/* Options: Date: 2026-03-31 18:44:51 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://test-dogw.klokgroep.nl/api //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: AddDocumentsForBackgroundRegistration.* //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.* /** * Register documents queueud for registration in background */ @Route(Path="/documentuploads/registerdocuments", Verbs="POST") @Api(Description="Register documents queueud for registration in background") @ApiResponse(Description="All queued documents are linked to a systemtask for background processing", StatusCode=200) open class AddDocumentsForBackgroundRegistration : IReturn { /** * List of queued documents to register in background */ @ApiMember(Description="List of queued documents to register in background", IsRequired=true) open var Documents:ArrayList = ArrayList() companion object { private val responseType = AddDocumentsForBackgroundRegistrationResponse::class.java } override fun getResponseType(): Any? = AddDocumentsForBackgroundRegistration.responseType } open class RegisterDocument : IReturn { open var RegistrationProfileID:UUID? = null open var Values:ArrayList? = null open var Processes:ArrayList? = null open var DocumentUploadId:String? = null open var DocumentId:UUID? = null open var StandardDocumentID:UUID? = null open var HasUnsavedChangesInDocument:Boolean? = null open var IsOpenedFromNonDMSLocation:Boolean? = null companion object { private val responseType = RegisterDocumentResponse::class.java } override fun getResponseType(): Any? = RegisterDocument.responseType } open class AddDocumentsForBackgroundRegistrationResponse { open var RegisteredDocumentUploads:ArrayList? = null } open class RegisteredDocumentUpload { open var DocumentUploadID:Int? = null open var IsSuccess:Boolean? = null open var Message:String? = null }