/* Options: Date: 2025-04-04 19:23:00 SwiftVersion: 5.0 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True IncludeTypes: CreateVossInvoice.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/voss/invoice", "POST") // @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) public class CreateVossInvoice : Codable { /** * 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 var companyId:String? /** * 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 var invoiceDate:Date? /** * If present the operation will start only after this date */ // @ApiMember(Description="If present the operation will start only after this date") public var scheduledStartTime:Date? /** * Optional CRON expression for recurring operations. */ // @ApiMember(Description="Optional CRON expression for recurring operations.") public var recurringSchedule:String required public init(){} }