(* Options: Date: 2025-07-11 22:05:11 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: GetTwilioToken.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace Voice.Api.Authentication open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [<AllowNullLiteral>] type GetTwilioTokenResponse() = ///<summary> ///The twilio token to use ///</summary> [<ApiMember(Description="The twilio token to use")>] member val Token:String = null with get,set ///<summary> ///Get a twilio token for client SDKs ///</summary> [<Route("/admin/token", "GET")>] [<Api(Description="Get a twilio token for client SDKs")>] [<AllowNullLiteral>] type GetTwilioToken() = interface IReturn<GetTwilioTokenResponse> interface IGet ///<summary> ///The account ID associated with the token ///</summary> [<ApiMember(Description="The account ID associated with the token")>] member val AccountId:String = null with get,set