/* Options: Date: 2025-07-04 09:55:44 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://doapigw.baasbv.nl/api //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetDocumentUploads.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; import com.google.gson.annotations.*; import com.google.gson.reflect.*; public class dtos { @Route(Path="/documentuploads", Verbs="GET") public static class GetDocumentUploads implements IReturn> { public UUID ViewID = null; public Integer PageSize = null; public Integer PageNumber = null; public String SearchCriteria = null; public UUID ExplorerID = null; public String Path = null; public UUID getViewID() { return ViewID; } public GetDocumentUploads setViewID(UUID value) { this.ViewID = value; return this; } public Integer getPageSize() { return PageSize; } public GetDocumentUploads setPageSize(Integer value) { this.PageSize = value; return this; } public Integer getPageNumber() { return PageNumber; } public GetDocumentUploads setPageNumber(Integer value) { this.PageNumber = value; return this; } public String getSearchCriteria() { return SearchCriteria; } public GetDocumentUploads setSearchCriteria(String value) { this.SearchCriteria = value; return this; } public UUID getExplorerID() { return ExplorerID; } public GetDocumentUploads setExplorerID(UUID value) { this.ExplorerID = value; return this; } public String getPath() { return Path; } public GetDocumentUploads setPath(String value) { this.Path = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); 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; } } }