node-ovh-ts
Version:
OVH API wrapper library for TypeScript
13 lines (10 loc) • 377 B
TypeScript
import { TelephonyScreenListNatureEnum } from './TelephonyScreenListNatureEnum.js';
import { TelephonyScreenListTypeEnum } from './TelephonyScreenListTypeEnum.js';
type TelephonyScreenList = {
callNumber?: string;
id?: number;
nature?: TelephonyScreenListNatureEnum;
status?: string;
type?: TelephonyScreenListTypeEnum;
};
export { TelephonyScreenList };