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