/* Options: Date: 2025-08-05 01:54:19 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.asg.com.au/RestApi //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: FilesGetRequest.* //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="/files-api", Verbs="GET") public static class FilesGetRequest implements IReturn { public String Path = null; public String Extension = null; public Integer Skip = null; public Integer Take = null; public String getPath() { return Path; } public FilesGetRequest setPath(String value) { this.Path = value; return this; } public String getExtension() { return Extension; } public FilesGetRequest setExtension(String value) { this.Extension = value; return this; } public Integer getSkip() { return Skip; } public FilesGetRequest setSkip(Integer value) { this.Skip = value; return this; } public Integer getTake() { return Take; } public FilesGetRequest setTake(Integer value) { this.Take = value; return this; } private static Object responseType = FilesViewModel.class; public Object getResponseType() { return responseType; } } public static class FilesViewModel { public ArrayList Items = null; public String Error = null; public ArrayList getItems() { return Items; } public FilesViewModel setItems(ArrayList value) { this.Items = value; return this; } public String getError() { return Error; } public FilesViewModel setError(String value) { this.Error = value; return this; } } public static class FilesItemViewModel { public String Name = null; public Boolean IsFolder = null; public Boolean HasChildren = null; public String getName() { return Name; } public FilesItemViewModel setName(String value) { this.Name = value; return this; } public Boolean getIsFolder() { return IsFolder; } public FilesItemViewModel setIsFolder(Boolean value) { this.IsFolder = value; return this; } public Boolean isHasChildren() { return HasChildren; } public FilesItemViewModel setHasChildren(Boolean value) { this.HasChildren = value; return this; } } }