(* Options: Date: 2025-12-06 06:21:50 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://galaxymobile.api.client.prod.86degrees.com //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: SubscriptionEvents.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace BusinessLogic.Entities 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 [] type IServiceRequest = interface end [] type IHasApiKey = abstract ApiKey:String with get,set type WebhookSubscriptionEventType = | MessageReceived = 1 [] type SubscriptionEventsDescription() = member val EventType:WebhookSubscriptionEventType = new WebhookSubscriptionEventType() with get,set member val EventName:String = null with get,set member val EventDescription:String = null 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 SubscriptionEventsResponse() = inherit ApiServiceResponse() member val SubscriptionEventsDescriptions:ResizeArray = new ResizeArray() with get,set [] [] type SubscriptionEvents() = inherit ApiServiceRequest() interface IReturn