/* Options: Date: 2025-04-14 07:56:51 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: SendAnInvoiceByEmail.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/eaccounting/invoice/{invoiceId}/email", Verbs="POST") open class SendAnInvoiceByEmail : ICompany { var InvoiceId:String? = null var Email:String? = null var CcRecipients:ArrayList<String> = ArrayList<String>() var Subject:String? = null var Message:String? = null var CompanyId:UUID? = null } open interface ICompany { var CompanyId:UUID? }