node-ovh-ts
Version:
OVH API wrapper library for TypeScript
13 lines (10 loc) • 348 B
TypeScript
import { TelephonyTypeEnum } from './TelephonyTypeEnum.js';
import { TelephonyTypeServiceEnum } from './TelephonyTypeServiceEnum.js';
type TelephonyOvhPabx = {
description?: string;
featureType?: TelephonyTypeEnum;
isCCS?: boolean;
serviceName?: string;
serviceType?: TelephonyTypeServiceEnum;
};
export { TelephonyOvhPabx };