UNPKG

node-ovh-ts

Version:

OVH API wrapper library for TypeScript

18 lines (15 loc) 637 B
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 };