/* Options: Date: 2025-12-06 06:20:29 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: AccidentAngelsHistoryRequest.* //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 BaseActivationHistoryRequest 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; public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } } export class ActivationHistoryData { /** @description Date and Time of the activation in ISO 8601 format. */ // @ApiMember(Description="Date and Time of the activation in ISO 8601 format.") public DateActivated: string; /** @description Latitude of the activation location. */ // @ApiMember(Description="Latitude of the activation location.") public Latitude: number; /** @description Longitude of the activation location. */ // @ApiMember(Description="Longitude of the activation location.") public Longitude: number; 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 ActivationHistoryResponse 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; /** @description A list of activation history instances, ordered by most recent first. */ // @ApiMember(Description="A list of activation history instances, ordered by most recent first.") public ActivationHistory: ActivationHistoryData[]; public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } } // @Route("/galaxy/accidentangels/history", "GET") export class AccidentAngelsHistoryRequest extends BaseActivationHistoryRequest implements IReturn { public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } public getTypeName() { return 'AccidentAngelsHistoryRequest'; } public getMethod() { return 'GET'; } public createResponse() { return new ActivationHistoryResponse(); } }