/* Options: Date: 2025-12-06 06:22:36 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: EmergencyServicesRequest.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class ApiServiceRequest implements IServiceRequest, IHasApiKey { /** @description The API Key required for authentication */ // @ApiMember(DataType="string", Description="The API Key required for authentication", IsRequired=true) public ApiKey: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export interface IServiceRequest { } export interface IHasApiKey { ApiKey: string; } export class BaseGalaxyActivationRequest extends ApiServiceRequest { /** @description ID Number of the user making this request. */ // @ApiMember(Description="ID Number of the user making this request.", IsRequired=true) public IdNumber: string; /** @description Latitude of the user making this request. */ // @ApiMember(Description="Latitude of the user making this request.", IsRequired=true) public Latitude: number; /** @description Longitude of the user making this request. */ // @ApiMember(Description="Longitude of the user making this request.", IsRequired=true) public Longitude: number; public constructor(init?: Partial) { super(init); (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 GalaxyActivationResponse extends ApiServiceResponse { /** @description Is the requested product set up and enabled on Galaxy. */ // @ApiMember(Description="Is the requested product set up and enabled on Galaxy.") public ProductAvailable: boolean; /** @description Does the user have access to this product, based on their Galaxy profile. */ // @ApiMember(Description="Does the user have access to this product, based on their Galaxy profile.") public UserHasAccess: boolean; public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } } // @Route("/galaxy/emergencyservices", "POST") export class EmergencyServicesRequest extends BaseGalaxyActivationRequest implements IReturn { public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } public getTypeName() { return 'EmergencyServicesRequest'; } public getMethod() { return 'POST'; } public createResponse() { return new GalaxyActivationResponse(); } }