node-ovh-ts
Version:
OVH API wrapper library for TypeScript
19 lines (16 loc) • 626 B
TypeScript
import { TelephonyProtocolEnum } from './TelephonyProtocolEnum.js';
import { TelephonyPhoneConfigurationProperty } from './TelephonyPhoneConfigurationProperty.js';
import './TelephonyPhoneConfigurationLevelEnum.js';
import './TelephonyPhoneConfigurationTypeEnum.js';
type TelephonyPhone = {
brand?: string;
description?: string;
macAddress?: string;
maxSimultaneousCalls?: number;
maxline?: number;
mgcpIpRestriction?: string | null;
phoneConfiguration?: TelephonyPhoneConfigurationProperty[];
protocol?: TelephonyProtocolEnum;
userPassword?: string | null;
};
export { TelephonyPhone };