UNPKG

@vonage/video

Version:

Package to interact with the Vonage Video API (Not OpenTok Compatible)

14 lines (11 loc) 364 B
import { SIPCallOptions } from '../SIPCallOptions.js'; /** * Represents the request to initiate a SIP call with additional session information. */ type InitiateSIPCallRequest = SIPCallOptions & { /** * The session ID of the Vonage Video session to associate with the SIP call. */ sessionId: string; }; export type { InitiateSIPCallRequest };