/* Options: Date: 2026-03-31 18:44:09 SwiftVersion: 6.0 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://dogw.klokgroep.nl/api //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: AddMessageQueueWithSendDocumentByEmail.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/messagequeue/senddocumentbyemail", "POST") public class AddMessageQueueWithSendDocumentByEmail : IReturn, Codable { public typealias Return = AddMessageQueueResonse public var fromProgCode:String? public var documentID:String? public var takeOverEmailAddresses:Bool? public var shippingFormID:Int? public var linkedDocumentIDs:[String]? required public init(){} } public class AddMessageQueueResonse : Codable { public var id:Int? required public init(){} }