/* Options: Date: 2025-12-06 07:51:18 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: UpdateBrandRequest.* //ExcludeTypes: //DefaultImports: */ export module BackofficeApi { // @ts-nocheck export interface IReturn { createResponse(): T; } export interface IPut { } 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 UpdateBrandResponse { public brand: BackofficeBrandDto; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/brand/update", "PUT") export class UpdateBrandRequest implements IReturn, IPut { public id?: number; public definedByRootCategoryId?: number; public name: string; public selectedForEditingInBackoffice?: boolean; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'UpdateBrandRequest'; } public getMethod() { return 'PUT'; } public createResponse() { return new UpdateBrandResponse(); } } }