UNPKG

node-ovh-ts

Version:

OVH API wrapper library for TypeScript

21 lines (18 loc) 656 B
import { TelephonyPortabilityCountryEnum } from './TelephonyPortabilityCountryEnum.js'; import { TelephonyPortabilityCustomerInfos } from './TelephonyPortabilityCustomerInfos.js'; type TelephonyPortability = { billingAccount?: string; creationDate?: Date; customerInfos?: TelephonyPortabilityCustomerInfos; desiredExecutionDate?: Date | null; error?: boolean; errorCodes?: string[]; id?: number; lineToRedirectTo?: string | null; numbersList?: string[]; operator?: string; orderId?: number; portabilityCountry?: TelephonyPortabilityCountryEnum; rio?: string | null; }; export { TelephonyPortability };