/* Options: Date: 2026-03-31 22:58:13 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://dogw.klokgroep.nl/api //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: AddMessageQueueWithSendDocumentByEmail.* //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="/messagequeue/senddocumentbyemail", Verbs="POST") open class AddMessageQueueWithSendDocumentByEmail : IReturn { open var FromProgCode:String? = null open var DocumentID:UUID? = null open var TakeOverEmailAddresses:Boolean? = null open var ShippingFormID:Int? = null open var LinkedDocumentIDs:ArrayList? = null companion object { private val responseType = AddMessageQueueResonse::class.java } override fun getResponseType(): Any? = AddMessageQueueWithSendDocumentByEmail.responseType } open class AddMessageQueueResonse { open var ID:Int? = null }