/* Options: Date: 2025-04-06 15:29:14 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetVossInvoiceFile.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/voss/invoice/file", Verbs="GET") @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) public static class GetVossInvoiceFile { /** * The company id, if empty will use the company id for the user you are logged in with. */ @ApiMember(Description="The company id, if empty will use the company id for the user you are logged in with.") public UUID CompanyId = null; /** * Controls up to which point of time transactions are included in invoice, can be set to any date, if not provided current UTC time will be used instead */ @ApiMember(Description="Controls up to which point of time transactions are included in invoice, can be set to any date, if not provided current UTC time will be used instead") public Date InvoiceDate = null; /** * If present the operation will start only after this date */ @ApiMember(Description="If present the operation will start only after this date") public Date ScheduledStartTime = null; /** * Optional CRON expression for recurring operations. */ @ApiMember(Description="Optional CRON expression for recurring operations.") public String RecurringSchedule = null; public UUID getCompanyId() { return CompanyId; } public GetVossInvoiceFile setCompanyId(UUID value) { this.CompanyId = value; return this; } public Date getInvoiceDate() { return InvoiceDate; } public GetVossInvoiceFile setInvoiceDate(Date value) { this.InvoiceDate = value; return this; } public Date getScheduledStartTime() { return ScheduledStartTime; } public GetVossInvoiceFile setScheduledStartTime(Date value) { this.ScheduledStartTime = value; return this; } public String getRecurringSchedule() { return RecurringSchedule; } public GetVossInvoiceFile setRecurringSchedule(String value) { this.RecurringSchedule = value; return this; } } }