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