/* Options: Date: 2025-09-14 22:17:53 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bookmore.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: SendAnInvoiceByEmail.* //ExcludeTypes: //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* @Route(Path="/eaccounting/invoice/{InvoiceId}/email", Verbs="POST") open class SendAnInvoiceByEmail : ICompany { open var InvoiceId:String? = null open var Email:String? = null open var CcRecipients:ArrayList? = null open var Subject:String? = null open var Message:String? = null override var CompanyId:UUID? = null } interface ICompany { var CompanyId:UUID? }