/* Options: Date: 2026-08-01 16:51:11 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://dmsshow.kyocerasolutions.cz //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: BrowsePicklistRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { @Route(Path="/{Brand}/browse/{BrowseType}/") // @Route(Path="/{Brand}/browse/{BrowseType}/{Path}") public static class BrowseRequest extends RequestBase { public String Path = null; public String getPath() { return Path; } public BrowseRequest setPath(String value) { this.Path = value; return this; } } @Route(Path="/{Brand}/browse/{BrowseType}/") // @Route(Path="/{Brand}/browse/{BrowseType}/{Path}") // @Route(Path="/{Brand}/browse/{BrowseType}/") // @Route(Path="/{Brand}/browse/{BrowseType}/{Path}") public static class BrowsePicklistRequest extends BrowseRequest { public String PicklistGuid = null; public HashMap Answers = null; public String getPicklistGuid() { return PicklistGuid; } public BrowsePicklistRequest setPicklistGuid(String value) { this.PicklistGuid = value; return this; } public HashMap getAnswers() { return Answers; } public BrowsePicklistRequest setAnswers(HashMap value) { this.Answers = value; return this; } } }