/* Options: Date: 2025-12-06 07:01:17 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: GetAllCustomBrandsRequest.* //ExcludeTypes: //DefaultImports: */ export module BackofficeApi { // @ts-nocheck export interface IReturn { createResponse(): T; } export interface IGet { } export class PlacePlainDto { public id?: number; public guid?: string; public name: string; public longitude?: number; public latitude?: number; public claimed?: boolean; public organizationNumber?: string; public overview?: string; public timeZoneDaylightName?: string; public timeZoneDisplayName?: string; public timeZoneStandardName?: string; public timeZoneSupportsDaylightSavingTime?: boolean; public businessId?: number; public contactPhone?: string; public contactEmail?: string; public contactWebsite?: string; public addressStreet: string; public addressPostalCode: string; public addressRegion: string; public addressCountryCode: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class BackofficePlaceCustomBrandDto { public id?: number; public definedByPlace: PlacePlainDto; public name: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class GetAllCustomBrandsResponse { public placeCustomBrands: BackofficePlaceCustomBrandDto[] = []; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/brand/get_all_custom", "GET") export class GetAllCustomBrandsRequest implements IReturn, IGet { public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetAllCustomBrandsRequest'; } public getMethod() { return 'GET'; } public createResponse() { return new GetAllCustomBrandsResponse(); } } }