/* Options: Date: 2024-10-18 04:14:55 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://digiofficeapigateway.deltares.nl/api //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: AddFileDocumentQueuedForRegistration.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/documentuploads", Verbs="POST") open class AddFileDocumentQueuedForRegistration : IReturn { var Note:String? = null var Description:String? = null var UploadOrigin:String? = null var AssignToUserID:Int? = null var AssignToGroupID:Int? = null var DocumentInfo:String? = null companion object { private val responseType = DocumentQueuedForRegistration::class.java } override fun getResponseType(): Any? = AddFileDocumentQueuedForRegistration.responseType } open class DocumentQueuedForRegistration { var DocumentuploadID:Int? = null }