/* Options: Date: 2025-05-05 00:33:13 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //GlobalNamespace: //MakePartial: True //MakeVirtual: True //MakeInternal: False //MakeDataContractsExtensible: False //AddNullableAnnotations: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //InitializeCollections: False //ExportValueTypes: False IncludeTypes: PatchDialingPermissions.* //ExcludeTypes: //AddNamespaces: //AddDefaultXmlNamespace: http://schemas.servicestack.net/types */ using System; using System.IO; using System.Collections; using System.Collections.Generic; using System.Runtime.Serialization; using ServiceStack; using ServiceStack.DataAnnotations; using Voice.Api.Settings; namespace Voice.Api.Settings { /// ///Update the specified dialing permissions /// [Route("/system/dialing-permissions/{isoCode}", "PATCH")] [Api(Description="Update the specified dialing permissions")] public partial class PatchDialingPermissions : IReturnVoid, IPatch { /// ///The account ID you are modifying /// [ApiMember(Description="The account ID you are modifying")] public virtual string AccountId { get; set; } /// ///The ISO code to patch /// [ApiMember(Description="The ISO code to patch")] public virtual string IsoCode { get; set; } /// ///If low risk numbers within this code are enabled /// [ApiMember(Description="If low risk numbers within this code are enabled")] public virtual bool LowRiskNumbersEnabled { get; set; } /// ///If high risk special numbers within this code are enabled /// [ApiMember(Description="If high risk special numbers within this code are enabled")] public virtual bool HighRiskSpecialNumbersEnabled { get; set; } /// ///If high risk toll fraud within this code are enabled /// [ApiMember(Description="If high risk toll fraud within this code are enabled")] public virtual bool HighRiskTollfraudNumbersEnabled { get; set; } } }