/* Options: Date: 2025-12-06 08:48:42 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: CreateMallRequest.* //ExcludeTypes: //DefaultImports: */ export module BackofficeApi { // @ts-nocheck export interface IReturn { createResponse(): T; } export interface IPost { } export class CreateMallResponse { public createdMallId?: number; public createMallGuid?: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/mall/create", "POST") export class CreateMallRequest implements IReturn, IPost { public name: string; public organizationNumber: string; public countryCode: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'CreateMallRequest'; } public getMethod() { return 'POST'; } public createResponse() { return new CreateMallResponse(); } } }