/* Options: Date: 2026-01-27 18:40:03 Version: 8.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://buildmax.org //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: JsonBrowseRequest.* //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 JsonBrowseRequest extends JsonRequestDto implements IReturn { public String Path = null; public String getPath() { return Path; } public JsonBrowseRequest setPath(String value) { this.Path = value; return this; } private static Object responseType = JsonBrowseResponse.class; public Object getResponseType() { return responseType; } } public static class JsonBrowseResponse { public String Path = null; public ArrayList Folders = null; public String getPath() { return Path; } public JsonBrowseResponse setPath(String value) { this.Path = value; return this; } public ArrayList getFolders() { return Folders; } public JsonBrowseResponse setFolders(ArrayList value) { this.Folders = value; return this; } } public static class JsonRequestDto extends JsonDto { public String ClientCode = null; public String ClientRegistrationCode = null; public String Token = null; public String getClientCode() { return ClientCode; } public JsonRequestDto setClientCode(String value) { this.ClientCode = value; return this; } public String getClientRegistrationCode() { return ClientRegistrationCode; } public JsonRequestDto setClientRegistrationCode(String value) { this.ClientRegistrationCode = value; return this; } public String getToken() { return Token; } public JsonRequestDto setToken(String value) { this.Token = value; return this; } } public static class JsonDto { } }