/* Options: Date: 2025-12-06 07:01:20 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://backoffice-api.brovs.com //GlobalNamespace: BackofficeApi //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: LookupBrandsNotSelectedForEditingInBackofficeRequest.* //ExcludeTypes: //DefaultImports: */ export module BackofficeApi { // @ts-nocheck export interface IReturn { createResponse(): T; } export interface IGet { } export class BackofficeBrandDto { public id?: number; public definedByRootCategoryId?: number; public name: string; public selectedForEditingInBackoffice?: boolean; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class LookupBrandsNotSelectedForEditingInBackofficeResponse { public brands: BackofficeBrandDto[] = []; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/brand/not_selected_for_editing", "GET") export class LookupBrandsNotSelectedForEditingInBackofficeRequest implements IReturn, IGet { public query?: string; public size?: number; public offset?: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'LookupBrandsNotSelectedForEditingInBackofficeRequest'; } public getMethod() { return 'GET'; } public createResponse() { return new LookupBrandsNotSelectedForEditingInBackofficeResponse(); } } }