/* Options: Date: 2025-12-06 07:45:22 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://business-api.brovs.com //GlobalNamespace: BusinessApi //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetStaffRequest.* //ExcludeTypes: //DefaultImports: */ export module BusinessApi { // @ts-nocheck export interface IReturn { createResponse(): T; } export interface IGet { } export interface IHasPlaceId { placeId?: number; } export enum StaffRole { Owner = 'Owner', Admin = 'Admin', Regular = 'Regular', } export enum BusinessRole { Owner = 'Owner', Manager = 'Manager', Sales = 'Sales', Marketing = 'Marketing', Other = 'Other', } export class StaffDto { public id?: number; public firstName?: string; public lastName?: string; public email?: string; public role?: StaffRole; public placeId?: number; public businessId?: number; public userId?: number; public placeName?: string; public businessName?: string; public mobileNumber: string; public businessRole?: BusinessRole; public lastActiveOn?: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class GetStaffResponse { public staffList: StaffDto[] = []; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/staff/get", "GET") export class GetStaffRequest implements IReturn, IGet, IHasPlaceId { public placeId?: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetStaffRequest'; } public getMethod() { return 'GET'; } public createResponse() { return new GetStaffResponse(); } } }