UNPKG

node-ovh-ts

Version:

OVH API wrapper library for TypeScript

16 lines (13 loc) 394 B
import { CoreTypesCountryEnum } from './CoreTypesCountryEnum.js'; type TelephonyContact = { address?: string | null; city?: string | null; country?: CoreTypesCountryEnum | null; email?: string | null; firstname?: string | null; name?: string | null; organisation?: string | null; phone?: string | null; zip?: string | null; }; export { TelephonyContact };