@vonage/voice
Version:
The Voice API lets you create outbound calls, control in-progress calls and get information about historical calls.
34 lines • 999 B
TypeScript
import { BasicCallDetail } from './BasicCallDetail';
import { CommonCallFields } from './CommonCallFields';
import { CallDirection } from '../enums';
/**
* Represents detailed information about a call, including common call fields, call direction, rate, price, start time,
* end time, and network information.
*/
export type CallDetail = CommonCallFields & BasicCallDetail & {
/**
* The direction of the call, indicating whether it is inbound or outbound.
*/
direction: CallDirection;
/**
* The rate associated with the call in a string format.
*/
rate: string;
/**
* The price of the call in a string format.
*/
price: string;
/**
* The start time of the call in a string format.
*/
startTime: string;
/**
* The end time of the call in a string format.
*/
endTime: string;
/**
* The network information related to the call.
*/
network: string;
};
//# sourceMappingURL=CallDetail.d.ts.map