/* Options: Date: 2024-07-03 12:34:23 SwiftVersion: 5.0 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True IncludeTypes: SendAnInvoiceByEmail.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/eaccounting/invoice/{invoiceId}/email", "POST") public class SendAnInvoiceByEmail : ICompany, Codable { public var invoiceId:String public var email:String public var ccRecipients:[String] = [] public var subject:String public var message:String public var companyId:String? required public init(){} } public protocol ICompany { var companyId:String? { get set } }