/* Options: Date: 2024-12-23 12:10:58 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://consumer-api.brovs.com //GlobalNamespace: ConsumerApi //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetRecentLocationRequest.* //ExcludeTypes: //DefaultImports: */ export module ConsumerApi { // @ts-nocheck export interface IReturn { createResponse(): T; } export interface IGet { } export enum RecentLocationType { Home = 'Home', Current = 'Current', Pin = 'Pin', Named = 'Named', } export class RecentLocationDto { public name: string; public description?: string|null; public latitude?: number|null; public longitude?: number|null; public locationType?: RecentLocationType|null; public googleAddressComponents?: string[]|null; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class GetRecentLocationResponse { public recentLocations: RecentLocationDto[]; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/location/GetRecentLocation", "GET") export class GetRecentLocationRequest implements IReturn, IGet { public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetRecentLocationRequest'; } public getMethod() { return 'GET'; } public createResponse() { return new GetRecentLocationResponse(); } } }