/* Options: Date: 2025-12-10 20:17:31 Version: 6.50 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://galaxymobile.api.dev.86degrees.com //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: PulsitProfileRequest.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class ApiServiceRequest implements IServiceRequest, IHasApiKey, IHasDeviceInfo, IHasClientId { /** * The API Key required for authentication */ // @ApiMember(DataType="string", Description="The API Key required for authentication", IsRequired=true) public ApiKey: string; /** * Latitude of the user making this request */ // @ApiMember(DataType="double", Description="Latitude of the user making this request") public Latitude: number; /** * 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 interface IHasClientId { } export enum DeviceType { Lock = 0, HomeSecurity = 1, } export class PulsitModuleStatusItem { public PulsitModuleId: string; public Latitude: number; public Longitude: number; public EventDescription: string; public EventTime: string; public Status: string; public PulsitStartId: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class PulsitProfileProductItem { public Product: string; public Make: string; public Model: string; public Year: string; public RegistrationNumber: string; public PulsitModuleId: string; public LatestStatus: PulsitModuleStatusItem; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class PulsitProfileDeviceItem { public PulsitModuleId: string; public Product: string; public Description: string; public Type: DeviceType; public TypeString: 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 PulsitProfileResponse extends ApiServiceResponse { public Products: PulsitProfileProductItem[]; public Devices: PulsitProfileDeviceItem[]; public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } } export class PulsitProfileRequest extends ApiServiceRequest implements IReturn { public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } public getTypeName() { return 'PulsitProfileRequest'; } public getMethod() { return 'GET'; } public createResponse() { return new PulsitProfileResponse(); } }