node-ovh-ts
Version:
OVH API wrapper library for TypeScript
17 lines (14 loc) • 436 B
TypeScript
import { NichandleCountryEnum } from './NichandleCountryEnum.js';
type PackXdslContactInfos = {
address?: string | null;
city?: string | null;
country?: NichandleCountryEnum;
email?: string;
firstname?: string | null;
name?: string | null;
organisation?: string | null;
phone?: string | null;
phoneCountry?: NichandleCountryEnum | null;
zip?: string | null;
};
export { PackXdslContactInfos };