(* Options: Date: 2025-05-04 23:15:19 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: GetPresenceStatusRequest.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace Voice.Api.Sessions open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations type PresenceStatuses = | Free = 0 | OnPhone = 1 [] type GetPresenceStatusResponse() = member val Statuses:Dictionary = null with get,set [] [] type GetPresenceStatusRequest() = interface IReturn /// ///The account to retrieve presence status for /// [] member val AccountId:String = null with get,set /// ///The extensions to retrieve presence status for /// [] member val Extensions:ResizeArray = null with get,set