/* Options: Date: 2025-05-05 01:18:22 SwiftVersion: 6.0 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: PatchDialingPermissions.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack /** * Update the specified dialing permissions */ // @Route("/system/dialing-permissions/{isoCode}", "PATCH") // @Api(Description="Update the specified dialing permissions") public class PatchDialingPermissions : IReturnVoid, IPatch, Codable { /** * The account ID you are modifying */ // @ApiMember(Description="The account ID you are modifying") public var accountId:String? /** * The ISO code to patch */ // @ApiMember(Description="The ISO code to patch") public var isoCode:String? /** * If low risk numbers within this code are enabled */ // @ApiMember(Description="If low risk numbers within this code are enabled") public var lowRiskNumbersEnabled:Bool? /** * If high risk special numbers within this code are enabled */ // @ApiMember(Description="If high risk special numbers within this code are enabled") public var highRiskSpecialNumbersEnabled:Bool? /** * If high risk toll fraud within this code are enabled */ // @ApiMember(Description="If high risk toll fraud within this code are enabled") public var highRiskTollfraudNumbersEnabled:Bool? required public init(){} }