/* Options: Date: 2025-12-06 07:04:24 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: PromoteCustomBrandToGlobalBrandRequest.* //ExcludeTypes: //DefaultImports: */ export module BackofficeApi { // @ts-nocheck export interface IReturn { createResponse(): T; } export interface IPost { } export class PromoteCustomBrandToGlobalBrandResponse { public promotedGlobalBrandId?: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/brand/promote_custom_to_global", "POST") export class PromoteCustomBrandToGlobalBrandRequest implements IReturn, IPost { public placeCustomBrandId?: number; public brandName?: string; public brandId?: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'PromoteCustomBrandToGlobalBrandRequest'; } public getMethod() { return 'POST'; } public createResponse() { return new PromoteCustomBrandToGlobalBrandResponse(); } } }