(* Options: Date: 2025-12-10 20:39:24 Version: 6.50 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://galaxymobile.api.dev.86degrees.com //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: SendSecurityCommand.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace CommonService.Api.Models.Base open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type ApiServiceRequest() = /// ///The API Key required for authentication /// [] member val ApiKey:String = null with get,set /// ///Latitude of the user making this request /// [] member val Latitude:Double = new Double() with get,set /// ///Longitude of the user making this request /// [] member val Longitude:Double = new Double() with get,set [] type IServiceRequest = interface end [] type IHasApiKey = abstract ApiKey:String with get,set [] type IHasDeviceInfo = interface end [] type IHasClientId = interface end type DeviceType = | Lock = 0 | HomeSecurity = 1 [] type IServiceResponse = abstract WasSuccessful:Boolean with get,set abstract Description:String with get,set abstract Heading:String with get,set [] type ApiServiceResponse() = member val Description:String = null with get,set member val Heading:String = null with get,set member val WasSuccessful:Boolean = new Boolean() with get,set member val ModelState:Object = null with get,set [] type SendSecurityCommand() = inherit ApiServiceRequest() interface IReturn member val PulsitModuleId:String = null with get,set member val Type:DeviceType = new DeviceType() with get,set