@vonage/video
Version:
Package to interact with the Vonage Video API (Not OpenTok Compatible)
24 lines (22 loc) • 483 B
text/typescript
/**
* Interface representing a session configuration.
*/
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;
};
export type { Session };