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