@vonage/video
Version:
Package to interact with the Vonage Video API (Not OpenTok Compatible)
24 lines (22 loc) • 529 B
text/typescript
/**
* Represents a response containing the details of a created session.
*/
type CreateSessionResponse = {
/**
* The unique session ID.
*/
session_id: string;
/**
* The project ID associated with the session.
*/
project_id: string;
/**
* The creation date and time of the session in string format.
*/
create_dt: string;
/**
* The URL of the media server associated with the session.
*/
media_server_url: string;
};
export type { CreateSessionResponse };