/* Options: Date: 2025-12-06 06:58:58 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: GetProfileRequest.* //ExcludeTypes: //DefaultImports: */ export module BackofficeApi { // @ts-nocheck export interface IReturn { createResponse(): T; } export interface IGet { } export enum Locale { EnUs = 'EnUs', NbNo = 'NbNo', } export class BackofficeUserDto { public id?: number; public email?: string; public firstName: string; public lastName: string; public mobilePhone: string; public locale?: Locale; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class GetProfileResponse { public userDto: BackofficeUserDto; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/staff/get_profile", "GET") export class GetProfileRequest implements IReturn, IGet { public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetProfileRequest'; } public getMethod() { return 'GET'; } public createResponse() { return new GetProfileResponse(); } } }