node-ovh-ts
Version:
OVH API wrapper library for TypeScript
18 lines (15 loc) • 637 B
TypeScript
import { TelephonyPhoneConfigurationLevelEnum } from './TelephonyPhoneConfigurationLevelEnum.js';
import { TelephonyPhoneConfigurationTypeEnum } from './TelephonyPhoneConfigurationTypeEnum.js';
type TelephonyPhoneConfigurationProperty = {
default?: string | null;
description?: string | null;
enum?: string[] | null;
group?: string | null;
level?: TelephonyPhoneConfigurationLevelEnum | null;
maxlength?: number | null;
name?: string | null;
rangeValue?: number | null;
type?: TelephonyPhoneConfigurationTypeEnum | null;
value?: string | null;
};
export { TelephonyPhoneConfigurationProperty };