/* Options: Date: 2024-10-18 04:15:03 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://digiofficeapigateway.deltares.nl/api //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: AddDocumentsForBackgroundRegistration.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { public static class RegisterDocument implements IReturn { public UUID RegistrationProfileID = null; public ArrayList Values = null; public ArrayList Processes = null; public String DocumentUploadId = null; public UUID DocumentId = null; public UUID StandardDocumentID = null; public Boolean HasUnsavedChangesInDocument = null; public Boolean IsOpenedFromNonDMSLocation = null; public UUID getRegistrationProfileID() { return RegistrationProfileID; } public RegisterDocument setRegistrationProfileID(UUID value) { this.RegistrationProfileID = value; return this; } public ArrayList getValues() { return Values; } public RegisterDocument setValues(ArrayList value) { this.Values = value; return this; } public ArrayList getProcesses() { return Processes; } public RegisterDocument setProcesses(ArrayList value) { this.Processes = value; return this; } public String getDocumentUploadId() { return DocumentUploadId; } public RegisterDocument setDocumentUploadId(String value) { this.DocumentUploadId = value; return this; } public UUID getDocumentId() { return DocumentId; } public RegisterDocument setDocumentId(UUID value) { this.DocumentId = value; return this; } public UUID getStandardDocumentID() { return StandardDocumentID; } public RegisterDocument setStandardDocumentID(UUID value) { this.StandardDocumentID = value; return this; } public Boolean isHasUnsavedChangesInDocument() { return HasUnsavedChangesInDocument; } public RegisterDocument setHasUnsavedChangesInDocument(Boolean value) { this.HasUnsavedChangesInDocument = value; return this; } public Boolean getIsOpenedFromNonDMSLocation() { return IsOpenedFromNonDMSLocation; } public RegisterDocument setIsOpenedFromNonDMSLocation(Boolean value) { this.IsOpenedFromNonDMSLocation = value; return this; } private static Object responseType = RegisterDocumentResponse.class; public Object getResponseType() { return 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) public static class AddDocumentsForBackgroundRegistration implements IReturn { /** * List of queued documents to register in background */ @ApiMember(Description="List of queued documents to register in background", IsRequired=true) public ArrayList Documents = null; public ArrayList getDocuments() { return Documents; } public AddDocumentsForBackgroundRegistration setDocuments(ArrayList value) { this.Documents = value; return this; } private static Object responseType = AddDocumentsForBackgroundRegistrationResponse.class; public Object getResponseType() { return responseType; } } public static class AddDocumentsForBackgroundRegistrationResponse { public ArrayList RegisteredDocumentUploads = null; public ArrayList getRegisteredDocumentUploads() { return RegisteredDocumentUploads; } public AddDocumentsForBackgroundRegistrationResponse setRegisteredDocumentUploads(ArrayList value) { this.RegisteredDocumentUploads = value; return this; } } public static class RegisteredDocumentUpload { public Integer DocumentUploadID = null; public Boolean IsSuccess = null; public String Message = null; public Integer getDocumentUploadID() { return DocumentUploadID; } public RegisteredDocumentUpload setDocumentUploadID(Integer value) { this.DocumentUploadID = value; return this; } public Boolean getIsSuccess() { return IsSuccess; } public RegisteredDocumentUpload setIsSuccess(Boolean value) { this.IsSuccess = value; return this; } public String getMessage() { return Message; } public RegisteredDocumentUpload setMessage(String value) { this.Message = value; return this; } } }