/* Options: Date: 2024-10-18 04:36:17 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: UpdateDocumentWithFile.* //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 UpdateDocumentWithFile implements IReturn { public UUID DocumentId = null; public Boolean UpdateStorageSystem = null; public UUID getDocumentId() { return DocumentId; } public UpdateDocumentWithFile setDocumentId(UUID value) { this.DocumentId = value; return this; } public Boolean isUpdateStorageSystem() { return UpdateStorageSystem; } public UpdateDocumentWithFile setUpdateStorageSystem(Boolean value) { this.UpdateStorageSystem = value; return this; } private static Object responseType = UpdateDocumentWithFileResponse.class; public Object getResponseType() { return responseType; } } public static class UpdateDocumentWithFileResponse { public Boolean IsSucces = null; public String FileUrl = null; public Boolean getIsSucces() { return IsSucces; } public UpdateDocumentWithFileResponse setIsSucces(Boolean value) { this.IsSucces = value; return this; } public String getFileUrl() { return FileUrl; } public UpdateDocumentWithFileResponse setFileUrl(String value) { this.FileUrl = value; return this; } } }