/* Options: Date: 2024-10-18 04:34:02 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: AddFile.* //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 AddFile implements IReturn { public String Link = null; public UUID BlobID = null; public Integer Size = null; public Boolean IsAttachment = null; public Boolean Data = null; public Boolean OCR = null; public Boolean Preview = null; public String Type = null; public Date DateTimeLastModified = null; public Integer MetricHeight = null; public Integer MetricWidth = null; public UUID DocumentID = null; public String OriginalFileName = null; public String getLink() { return Link; } public AddFile setLink(String value) { this.Link = value; return this; } public UUID getBlobID() { return BlobID; } public AddFile setBlobID(UUID value) { this.BlobID = value; return this; } public Integer getSize() { return Size; } public AddFile setSize(Integer value) { this.Size = value; return this; } public Boolean getIsAttachment() { return IsAttachment; } public AddFile setIsAttachment(Boolean value) { this.IsAttachment = value; return this; } public Boolean isData() { return Data; } public AddFile setData(Boolean value) { this.Data = value; return this; } public Boolean isOcr() { return OCR; } public AddFile setOcr(Boolean value) { this.OCR = value; return this; } public Boolean isPreview() { return Preview; } public AddFile setPreview(Boolean value) { this.Preview = value; return this; } public String getType() { return Type; } public AddFile setType(String value) { this.Type = value; return this; } public Date getDateTimeLastModified() { return DateTimeLastModified; } public AddFile setDateTimeLastModified(Date value) { this.DateTimeLastModified = value; return this; } public Integer getMetricHeight() { return MetricHeight; } public AddFile setMetricHeight(Integer value) { this.MetricHeight = value; return this; } public Integer getMetricWidth() { return MetricWidth; } public AddFile setMetricWidth(Integer value) { this.MetricWidth = value; return this; } public UUID getDocumentID() { return DocumentID; } public AddFile setDocumentID(UUID value) { this.DocumentID = value; return this; } public String getOriginalFileName() { return OriginalFileName; } public AddFile setOriginalFileName(String value) { this.OriginalFileName = value; return this; } private static Object responseType = AddFileResponse.class; public Object getResponseType() { return responseType; } } public static class AddFileResponse { public UUID FileID = null; public UUID getFileID() { return FileID; } public AddFileResponse setFileID(UUID value) { this.FileID = value; return this; } } }