UNPKG

node-ovh-ts

Version:

OVH API wrapper library for TypeScript

17 lines (14 loc) 494 B
import { TelephonyProtocolEnum } from './TelephonyProtocolEnum.js'; import { OrderPrice } from './OrderPrice.js'; import { TelephonyRmaOfferTypeEnum } from './TelephonyRmaOfferTypeEnum.js'; import './OrderCurrencyCodeEnum.js'; type TelephonyLinePhone = { brand?: string; description?: string; fees?: OrderPrice | null; maxline?: number; offerType?: TelephonyRmaOfferTypeEnum; price?: OrderPrice; protocol?: TelephonyProtocolEnum; }; export { TelephonyLinePhone };