/* Options: Date: 2025-05-05 01:08:50 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: PatchDialingPermissions.* //ExcludeTypes: //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* /** * Update the specified dialing permissions */ @Route(Path="/system/dialing-permissions/{isoCode}", Verbs="PATCH") @Api(Description="Update the specified dialing permissions") open class PatchDialingPermissions : IReturnVoid, IPatch { /** * The account ID you are modifying */ @ApiMember(Description="The account ID you are modifying") open var accountId:String? = null /** * The ISO code to patch */ @ApiMember(Description="The ISO code to patch") open var isoCode:String? = null /** * If low risk numbers within this code are enabled */ @ApiMember(Description="If low risk numbers within this code are enabled") open var lowRiskNumbersEnabled:Boolean? = null /** * If high risk special numbers within this code are enabled */ @ApiMember(Description="If high risk special numbers within this code are enabled") open var highRiskSpecialNumbersEnabled:Boolean? = null /** * If high risk toll fraud within this code are enabled */ @ApiMember(Description="If high risk toll fraud within this code are enabled") open var highRiskTollfraudNumbersEnabled:Boolean? = null }