node-ovh-ts
Version:
OVH API wrapper library for TypeScript
15 lines (12 loc) • 344 B
TypeScript
import { NichandleCountryEnum } from './NichandleCountryEnum.js';
type MeContactAddress = {
city?: string;
country?: NichandleCountryEnum;
line1?: string;
line2?: string | null;
line3?: string | null;
otherDetails?: string | null;
province?: string | null;
zip?: string | null;
};
export { MeContactAddress };