(* Options: Date: 2025-05-05 00:49:32 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: NewDeviceToken.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace Voice.Api.App open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations type DeviceTypes = | Web = 0 | iOS = 1 | Android = 2 [] type DeviceTokenInfo() = member val DeviceType:DeviceTypes = new DeviceTypes() with get,set member val Token:String = null with get,set /// ///Create a new device token if it doesn't exist already /// [] [] [] type NewDeviceToken() = interface IReturn interface IPost /// ///The type of device /// [] member val DeviceType:DeviceTypes = new DeviceTypes() with get,set /// ///The device token to save /// [] member val Token:String = null with get,set