node-ovh-ts
Version:
OVH API wrapper library for TypeScript
12 lines (9 loc) • 414 B
TypeScript
import { TelephonyLinePhoneAssociableConfiguredLines } from './TelephonyLinePhoneAssociableConfiguredLines.js';
import { TelephonyProtocolEnum } from './TelephonyProtocolEnum.js';
type TelephonyLinePhoneAssociable = {
associatedLines?: TelephonyLinePhoneAssociableConfiguredLines[];
brand?: string;
maxLines?: number;
protocol?: TelephonyProtocolEnum;
};
export { TelephonyLinePhoneAssociable };