@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
28 lines • 1.17 kB
TypeScript
import { NumberCountryEnum } from './NumberCountryEnum';
import { NumberDetailedZoneMatchingCriteriaEnum } from './NumberDetailedZoneMatchingCriteriaEnum';
import { NumberCountryCodeEnum } from './NumberCountryCodeEnum';
import { NumberDetailedZoneTypeEnum } from './NumberDetailedZoneTypeEnum';
/** A geographic zone from a country */
export interface NumberDetailedZone {
/** The searched value */
askedCity?: string;
/** The city of the zone */
city: string;
/** The country of the zone */
country: NumberCountryEnum;
/** The number's range of this zone, in international format */
internationalNumber: string;
/** The criteria that matched the searched value */
matchingCriteria?: NumberDetailedZoneMatchingCriteriaEnum;
/** The number's range of this zone */
number: string;
/** The country code of the number's range */
prefix: NumberCountryCodeEnum;
/** The type of number's range of this zone */
type: NumberDetailedZoneTypeEnum;
/** The zip code of the zone */
zipCode?: string;
/** The list of ZNE of this zone */
zneList: string[];
}
//# sourceMappingURL=NumberDetailedZone.d.ts.map