UNPKG

node-ovh-ts

Version:

OVH API wrapper library for TypeScript

24 lines (21 loc) 841 B
import { TelephonyLineOffer } from './TelephonyLineOffer.js'; import { TelephonyLineNotificationsOptions } from './TelephonyLineNotificationsOptions.js'; import { TelephonyTypeServiceEnum } from './TelephonyTypeServiceEnum.js'; import './OrderPrice.js'; import './OrderCurrencyCodeEnum.js'; import './TelephonyLineNotificationsLogsOptions.js'; import './TelephonyLineNotificationsLogsFrequencyEnum.js'; type TelephonyLine = { canChangePassword?: boolean; description?: string; deviceSlot?: number; getPublicOffer?: TelephonyLineOffer; infrastructure?: string; isAttachedToOtherLinesPhone?: boolean; notifications?: TelephonyLineNotificationsOptions | null; offers?: string[]; serviceName?: string; serviceType?: TelephonyTypeServiceEnum; simultaneousLines?: number; }; export { TelephonyLine };