node-ovh-ts
Version:
OVH API wrapper library for TypeScript
25 lines (22 loc) • 957 B
TypeScript
import { TelephonyTypeEnum } from './TelephonyTypeEnum.js';
import { TelephonyOvhPabxDialplanNumberPresentationEnum } from './TelephonyOvhPabxDialplanNumberPresentationEnum.js';
import { TelephonyOvhPabxHuntingQueueStrategyEnum } from './TelephonyOvhPabxHuntingQueueStrategyEnum.js';
import { TelephonyTypeServiceEnum } from './TelephonyTypeServiceEnum.js';
type TelephonyEasyHunting = {
anonymousRejection?: boolean;
description?: string;
featureType?: TelephonyTypeEnum;
isCCS?: boolean;
maxWaitTime?: number;
queueSize?: number;
serviceName?: string;
serviceType?: TelephonyTypeServiceEnum;
showCallerNumber?: TelephonyOvhPabxDialplanNumberPresentationEnum;
statusIvrEnabled?: boolean;
strategy?: TelephonyOvhPabxHuntingQueueStrategyEnum;
toneOnClosing?: number | null;
toneOnHold?: number | null;
toneOnOpening?: number | null;
voicemail?: string | null;
};
export { TelephonyEasyHunting };