node-ovh-ts
Version:
OVH API wrapper library for TypeScript
20 lines (17 loc) • 834 B
TypeScript
import { TelephonyNumberCountryCodeEnum } from './TelephonyNumberCountryCodeEnum.js';
import { TelephonyNumberDetailedZoneMatchingCriteriaEnum } from './TelephonyNumberDetailedZoneMatchingCriteriaEnum.js';
import { TelephonyNumberCountryEnum } from './TelephonyNumberCountryEnum.js';
import { TelephonyNumberDetailedZoneTypeEnum } from './TelephonyNumberDetailedZoneTypeEnum.js';
type TelephonyNumberDetailedZone = {
askedCity?: string | null;
city?: string;
country?: TelephonyNumberCountryEnum;
internationalNumber?: string;
matchingCriteria?: TelephonyNumberDetailedZoneMatchingCriteriaEnum | null;
number?: string;
prefix?: TelephonyNumberCountryCodeEnum;
type?: TelephonyNumberDetailedZoneTypeEnum;
zipCode?: string | null;
zneList?: string[];
};
export { TelephonyNumberDetailedZone };