/* Options: Date: 2025-12-06 06:41:47 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://business-api.brovs.com //Package: //GlobalNamespace: BusinessApi //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: LookupBrandsByRootCategoryRequest.* //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 BusinessApi { @Route(Path="/brand/lookup_by_rootcategory", Verbs="GET") public static class LookupBrandsByRootCategoryRequest implements IReturn, IGet { public String query = null; public Long rootCategoryId = null; public Integer size = null; public Integer offset = null; public String getQuery() { return query; } public LookupBrandsByRootCategoryRequest setQuery(String value) { this.query = value; return this; } public Long getRootCategoryId() { return rootCategoryId; } public LookupBrandsByRootCategoryRequest setRootCategoryId(Long value) { this.rootCategoryId = value; return this; } public Integer getSize() { return size; } public LookupBrandsByRootCategoryRequest setSize(Integer value) { this.size = value; return this; } public Integer getOffset() { return offset; } public LookupBrandsByRootCategoryRequest setOffset(Integer value) { this.offset = value; return this; } private static Object responseType = LookupBrandsByRootCategoryResponse.class; public Object getResponseType() { return responseType; } } public static class LookupBrandsByRootCategoryResponse { public ArrayList brands = new ArrayList(); public ArrayList getBrands() { return brands; } public LookupBrandsByRootCategoryResponse setBrands(ArrayList value) { this.brands = value; return this; } } public static class BrandDto { public Long id = null; public Long definedByRootCategoryId = null; public String name = null; public Long getId() { return id; } public BrandDto setId(Long value) { this.id = value; return this; } public Long getDefinedByRootCategoryId() { return definedByRootCategoryId; } public BrandDto setDefinedByRootCategoryId(Long value) { this.definedByRootCategoryId = value; return this; } public String getName() { return name; } public BrandDto setName(String value) { this.name = value; return this; } } }