/* Options: Date: 2025-12-06 07:49:18 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://business-api.brovs.com //GlobalNamespace: BusinessApi //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: PlaceGetSelectedBrandsRequest.* //ExcludeTypes: //DefaultImports: */ export module BusinessApi { // @ts-nocheck export interface IReturn { createResponse(): T; } export interface IGet { } export interface IHasPlaceId { placeId?: number; } export class BrandDto { public id?: number; public definedByRootCategoryId?: number; public name: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class CategoryDto { public id?: number; public slug: string; public absoluteSlug: string; public name: string; public parentId?: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class BrandWithCategoriesDto extends BrandDto { public categories: CategoryDto[] = []; public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } } export class PlaceCustomBrandWithCategoriesDto { public id?: number; public definedByPlaceId?: number; public label: string; public categories: CategoryDto[] = []; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class PlaceGetSelectedBrandsResponse { public brandsWithCategories: BrandWithCategoriesDto[] = []; public customBrandsWithCategories: PlaceCustomBrandWithCategoriesDto[] = []; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/place/get_selected_brands", "GET") export class PlaceGetSelectedBrandsRequest implements IReturn, IGet, IHasPlaceId { public placeId?: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'PlaceGetSelectedBrandsRequest'; } public getMethod() { return 'GET'; } public createResponse() { return new PlaceGetSelectedBrandsResponse(); } } }