Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Recording

import type { Recording } from "https://googleapis.deno.dev/v1/meet:v2.ts";

Metadata about a recording created during a conference.

interface Recording {
readonly driveDestination?: DriveDestination;
readonly endTime?: Date;
readonly name?: string;
readonly startTime?: Date;
readonly state?:
| "STATE_UNSPECIFIED"
| "STARTED"
| "ENDED"
| "FILE_GENERATED";
}

§Properties

§
readonly driveDestination?: DriveDestination
[src]

Output only. Recording is saved to Google Drive as an MP4 file. The drive_destination includes the Drive fileId that can be used to download the file using the files.get method of the Drive API.

§
readonly endTime?: Date
[src]

Output only. Timestamp when the recording ended.

§
readonly name?: string
[src]

Output only. Resource name of the recording. Format: conferenceRecords/{conference_record}/recordings/{recording} where {recording} is a 1:1 mapping to each unique recording session during the conference.

§
readonly startTime?: Date
[src]

Output only. Timestamp when the recording started.

§
readonly state?: "STATE_UNSPECIFIED" | "STARTED" | "ENDED" | "FILE_GENERATED"
[src]

Output only. Current state.