/* Options: Date: 2025-05-04 22:54:15 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: PatchDialingPermissions.* //ExcludeTypes: //DefaultImports: */ export class NodeParameterMap { [key:string] : NodeParameter; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export interface IReturnVoid { createResponse(): void; } export interface IPatch { } /** @description Update the specified dialing permissions */ // @Route("/system/dialing-permissions/{isoCode}", "PATCH") // @Api(Description="Update the specified dialing permissions") export class PatchDialingPermissions implements IReturnVoid, IPatch { /** @description The account ID you are modifying */ // @ApiMember(Description="The account ID you are modifying") public accountId: string; /** @description The ISO code to patch */ // @ApiMember(Description="The ISO code to patch") public isoCode: string; /** @description If low risk numbers within this code are enabled */ // @ApiMember(Description="If low risk numbers within this code are enabled") public lowRiskNumbersEnabled: boolean; /** @description If high risk special numbers within this code are enabled */ // @ApiMember(Description="If high risk special numbers within this code are enabled") public highRiskSpecialNumbersEnabled: boolean; /** @description If high risk toll fraud within this code are enabled */ // @ApiMember(Description="If high risk toll fraud within this code are enabled") public highRiskTollfraudNumbersEnabled: boolean; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'PatchDialingPermissions'; } public getMethod() { return 'PATCH'; } public createResponse() {} }