/* Options: Date: 2025-12-06 06:21:05 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://galaxymobile.api.client.prod.86degrees.com //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: SendRapidLocationCommand.* //ExcludeTypes: //DefaultImports: */ export interface IServiceResponse { WasSuccessful: boolean; Description: string; Heading: string; } 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); } } // @Route("/pulsit/sendrapidlocationcommand", "POST") export class SendRapidLocationCommand implements IReturn { public PulsitModuleId: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'SendRapidLocationCommand'; } public getMethod() { return 'POST'; } public createResponse() { return new ApiServiceResponse(); } }