(* Options: Date: 2025-05-05 01:38:12 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: PatchDialingPermissions.* //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 /// ///Update the specified dialing permissions /// [] [] [] type PatchDialingPermissions() = interface IReturnVoid interface IPatch /// ///The account ID you are modifying /// [] member val AccountId:String = null with get,set /// ///The ISO code to patch /// [] member val IsoCode:String = null with get,set /// ///If low risk numbers within this code are enabled /// [] member val LowRiskNumbersEnabled:Boolean = new Boolean() with get,set /// ///If high risk special numbers within this code are enabled /// [] member val HighRiskSpecialNumbersEnabled:Boolean = new Boolean() with get,set /// ///If high risk toll fraud within this code are enabled /// [] member val HighRiskTollfraudNumbersEnabled:Boolean = new Boolean() with get,set