@vonage/video
Version:
Package to interact with the Vonage Video API (Not OpenTok Compatible)
20 lines (18 loc) • 404 B
TypeScript
/**
* Represents the response for a SIP call initiation.
*/
type SIPCallResponse = {
/**
* The unique identifier of the SIP call.
*/
id: string;
/**
* The connection identifier associated with the SIP call.
*/
connectionId: string;
/**
* The stream identifier associated with the SIP call.
*/
streamId: string;
};
export type { SIPCallResponse };