(* Options: Date: 2025-12-10 20:31:21 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: PostMessage.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace WebService.ServiceModel open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type IHasApiKey = abstract ApiKey:String with get,set [] type ILogRequest = interface end [] type MessageType = | Info = 1 | Marketing = 2 | Policy = 3 | Announcement = 4 | General = 5 | Claim = 6 [] type UserDetails() = member val IdNumber:String = null with get,set member val GalaxyCompanyId:Int32 = new Int32() 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 PostMessageResponse() = inherit ApiServiceResponse() [] [] type PostMessage() = interface IReturn /// ///The type of message being sent. /// [] member val Type:MessageType = new MessageType() with get,set /// ///The subject of the message /// [] member val Subject:String = null with get,set /// ///The content of the message /// [] member val Content:String = null with get,set /// ///The recipients who will be receiving the message /// [] member val Recipients:ResizeArray = new ResizeArray() with get,set /// ///The API Key required for authentication /// [] member val ApiKey:String = null with get,set /// ///If set, the message will be displayed in the user's inbox in the app. Otherwise will just be a push notification. /// [] member val ShowInInbox:Boolean = new Boolean() with get,set