/* Options: Date: 2025-05-05 00:16:10 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: GetDialingPermissions.* //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 { public partial class DialingPermissionInfo { public virtual string IsoCode { get; set; } public virtual string Name { get; set; } public virtual bool LowRiskNumbersEnabled { get; set; } public virtual bool HighRiskSpecialNumbersEnabled { get; set; } public virtual bool HighRiskTollfraudNumbersEnabled { get; set; } } /// ///Get all of the country based dialing permissions for this account /// [Route("/system/dialing-permissions", "GET")] [Api(Description="Get all of the country based dialing permissions for this account")] public partial class GetDialingPermissions : IReturn, IGet { /// ///The account ID you want to retrieve for /// [ApiMember(Description="The account ID you want to retrieve for")] public virtual string AccountId { get; set; } } public partial class GetDialingPermissionsResponse { public virtual List Permissions { get; set; } } }