(* Options: Date: 2025-05-05 01:16:47 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: GetDialingPermissions.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace Voice.Api.Settings open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type DialingPermissionInfo() = member val IsoCode:String = null with get,set member val Name:String = null with get,set member val LowRiskNumbersEnabled:Boolean = new Boolean() with get,set member val HighRiskSpecialNumbersEnabled:Boolean = new Boolean() with get,set member val HighRiskTollfraudNumbersEnabled:Boolean = new Boolean() with get,set [] type GetDialingPermissionsResponse() = member val Permissions:ResizeArray = null with get,set /// ///Get all of the country based dialing permissions for this account /// [] [] [] type GetDialingPermissions() = interface IReturn interface IGet /// ///The account ID you want to retrieve for /// [] member val AccountId:String = null with get,set