/* Options: Date: 2024-10-18 04:26:15 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: AddDocumentsForBackgroundRegistration.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* open class RegisterDocument : IReturn { var RegistrationProfileID:UUID? = null var Values:ArrayList = ArrayList() var Processes:ArrayList = ArrayList() var DocumentUploadId:String? = null var DocumentId:UUID? = null var StandardDocumentID:UUID? = null var HasUnsavedChangesInDocument:Boolean? = null var IsOpenedFromNonDMSLocation:Boolean? = null companion object { private val responseType = RegisterDocumentResponse::class.java } override fun getResponseType(): Any? = RegisterDocument.responseType } /** * 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) var Documents:ArrayList = ArrayList() companion object { private val responseType = AddDocumentsForBackgroundRegistrationResponse::class.java } override fun getResponseType(): Any? = AddDocumentsForBackgroundRegistration.responseType } open class AddDocumentsForBackgroundRegistrationResponse { var RegisteredDocumentUploads:ArrayList = ArrayList() } open class RegisteredDocumentUpload { var DocumentUploadID:Int? = null var IsSuccess:Boolean? = null var Message:String? = null }