/* Options: Date: 2026-03-31 20:23:16 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: AddFileDocumentQueuedForRegistration.* //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="/documentuploads", Verbs="POST") open class AddFileDocumentQueuedForRegistration : IReturn { open var Note:String? = null open var Description:String? = null open var UploadOrigin:String? = null open var AssignToUserID:Int? = null open var AssignToGroupID:Int? = null open var DocumentInfo:String? = null companion object { private val responseType = DocumentQueuedForRegistration::class.java } override fun getResponseType(): Any? = AddFileDocumentQueuedForRegistration.responseType } open class DocumentQueuedForRegistration { open var DocumentuploadID:Int? = null }