/* Options: Date: 2025-12-12 22:17:59 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://reservation.api.dev.86degrees.com //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetDashboardInfo.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class ApiServiceRequest implements IServiceRequest, IHasApiKey, IHasDeviceInfo { /** @description The API Key required for authentication */ // @ApiMember(DataType="string", Description="The API Key required for authentication", IsRequired=true) public apiKey: string; /** @description Latitude of the user making this request */ // @ApiMember(DataType="double", Description="Latitude of the user making this request") public latitude: number; /** @description Longitude of the user making this request */ // @ApiMember(DataType="double", Description="Longitude of the user making this request") public longitude: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export interface IServiceRequest { } export interface IHasApiKey { apiKey: string; } export interface IHasDeviceInfo { } export class RatesItem { public rate: number; public minutes: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class FacilityData { public facilityId: number; public facilityGuid: string; public name: string; public description: string; public nextAvailable: string; public hasNextAvailable: boolean; public rates: RatesItem[]; public themeColor: string; public bookingNotes: string; public leadTime: number; public venueId: number; public allowExtraRequirements: boolean; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class VenueData { public venueId: number; public name: string; public registeredDate: string; public venueCode: string; public isCoordinator: boolean; public facilities: FacilityData[]; public latitude: number; public longitude: number; public hasLocation: boolean; public logoUrl: string; public leadTime: number; public venueInfo: string; public allowGuests: boolean; public contactNumber: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class DashBookingInfo { public bookingId: number; public start: string; public end: string; public facilityName: string; public venueName: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class ApiServiceResponse implements IServiceResponse { public description: string; public heading: string; public wasSuccessful: boolean; public modelState: Object; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class GetDashboardInfoResponse extends ApiServiceResponse { public bookings: DashBookingInfo[]; public venues: VenueData[]; public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } } export class GetDashboardInfo extends ApiServiceRequest implements IReturn { public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } public getTypeName() { return 'GetDashboardInfo'; } public getMethod() { return 'GET'; } public createResponse() { return new GetDashboardInfoResponse(); } }