/* Options: Date: 2025-09-14 16:46:31 SwiftVersion: 6.0 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bookmore.com //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: SendAnInvoiceByEmail.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //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 } }