@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
17 lines • 427 B
TypeScript
import { CountryEnum } from '../nichandle/CountryEnum';
/** Hosting location */
export interface PccZone {
/** Name of City */
city: string;
/** Country code */
countryCode: CountryEnum;
/** Id of pccZone */
id: number;
/** Name of pccZone */
pccZone: string;
/** Region name */
region: string;
/** Location name */
regionLocation: string;
}
//# sourceMappingURL=PccZone.d.ts.map