/* Options: Date: 2025-05-04 22:13:55 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: SearchPhoneNumbers.* //ExcludeTypes: //DefaultImports: */ export class NodeParameterMap { [key:string] : NodeParameter; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export interface IReturn { createResponse(): T; } export interface IGet { } /** @description Search for phone numbers */ // @Route("/endpoints/phone-numbers/search", "GET") // @Api(Description="Search for phone numbers") export class SearchPhoneNumbers implements IReturn, IGet { /** @description The account you are searching for */ // @ApiMember(Description="The account you are searching for") public accountId: string; /** @description The area code */ // @ApiMember(Description="The area code") public areaCode: string; /** @description The country code you are searching for */ // @ApiMember(Description="The country code you are searching for") public countryCode: string; /** @description The postal code you are searching for */ // @ApiMember(Description="The postal code you are searching for") public postalCode: string; /** @description The distance from the specified postal code (default is 100) */ // @ApiMember(Description="The distance from the specified postal code (default is 100)") public distance?: number; /** @description Search for fax numbers */ // @ApiMember(Description="Search for fax numbers") public isFaxNumber: boolean; /** @description Contains specific digits */ // @ApiMember(Description="Contains specific digits") public contains: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'SearchPhoneNumbers'; } public getMethod() { return 'GET'; } public createResponse() { return new Array(); } }