@vonage/video
Version:
Package to interact with the Vonage Video API (Not OpenTok Compatible)
70 lines • 1.54 kB
TypeScript
/**
* Represents the details of a single archive.
*/
export type SingleArchiveResponse = {
/**
* The timestamp when the archive was created, expressed in milliseconds since the Unix epoch.
*/
createdAt: number;
/**
* The duration of the archive in seconds.
*/
duration: number;
/**
* Indicates whether the archive has audio.
*/
hasAudio: boolean;
/**
* Indicates whether the archive has video.
*/
hasVideo: boolean;
/**
* The unique identifier of the archive.
*/
id: string;
/**
* The name of the archive.
*/
name: string;
/**
* The output mode of the archive.
*/
outputMode: string;
/**
* The unique identifier of the project to which the archive belongs.
*/
projectId: string;
/**
* The reason for the archive status.
*/
reason: string;
/**
* The resolution of the archive.
*/
resolution: string;
/**
* The unique identifier of the session associated with the archive.
*/
sessionId: string;
/**
* The size of the archive in bytes.
*/
size: number;
/**
* The status of the archive.
*/
status: string;
/**
* The stream mode of the archive.
*/
streamMode: string;
/**
* The URL of the archive.
*/
url?: string;
/**
* An array of stream identifiers associated with the archive.
*/
streams?: string[];
};
//# sourceMappingURL=SingleArchiveResponse.d.ts.map