@vonage/video
Version:
Package to interact with the Vonage Video API (Not OpenTok Compatible)
22 lines • 501 B
TypeScript
/**
* Interface representing a session configuration.
*/
export type Session = {
/**
* The unique identifier for the session.
*/
sessionId: string;
/**
* The location of the session.
*/
location: string;
/**
* The media mode for the session (e.g., "ROUTED" or "RELAYED").
*/
mediaMode: string;
/**
* The archive mode for the session (e.g., "MANUAL" or "ALWAYS").
*/
archiveMode: string;
};
//# sourceMappingURL=Session.d.ts.map