/* Options: Date: 2024-10-18 04:34:28 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: GetDocumentUploadDetails.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/documentuploads/{ID}", Verbs="GET") public static class GetDocumentUploadDetails implements IReturn { public Integer ID = null; public Integer getId() { return ID; } public GetDocumentUploadDetails setId(Integer value) { this.ID = value; return this; } private static Object responseType = DocumentUpload.class; public Object getResponseType() { return responseType; } } public static class DocumentUpload { public Integer ID = null; public String Description = null; public String Notes = null; public String FileName = null; public String Extension = null; public Date FileDate = null; public String AssignedTo = null; public String AssignedToGroup = null; public String UploadedBy = null; public Boolean HasPreview = null; public Integer getId() { return ID; } public DocumentUpload setId(Integer value) { this.ID = value; return this; } public String getDescription() { return Description; } public DocumentUpload setDescription(String value) { this.Description = value; return this; } public String getNotes() { return Notes; } public DocumentUpload setNotes(String value) { this.Notes = value; return this; } public String getFileName() { return FileName; } public DocumentUpload setFileName(String value) { this.FileName = value; return this; } public String getExtension() { return Extension; } public DocumentUpload setExtension(String value) { this.Extension = value; return this; } public Date getFileDate() { return FileDate; } public DocumentUpload setFileDate(Date value) { this.FileDate = value; return this; } public String getAssignedTo() { return AssignedTo; } public DocumentUpload setAssignedTo(String value) { this.AssignedTo = value; return this; } public String getAssignedToGroup() { return AssignedToGroup; } public DocumentUpload setAssignedToGroup(String value) { this.AssignedToGroup = value; return this; } public String getUploadedBy() { return UploadedBy; } public DocumentUpload setUploadedBy(String value) { this.UploadedBy = value; return this; } public Boolean isHasPreview() { return HasPreview; } public DocumentUpload setHasPreview(Boolean value) { this.HasPreview = value; return this; } } }