Skip to content

Commit

Permalink
feat: added start and end time fields to Recording and Transcript res…
Browse files Browse the repository at this point in the history
…ources

Users may now access the start_time and end_time fields of the Recording and Transcript resources in the Meet REST API.

PiperOrigin-RevId: 591226459
  • Loading branch information
Google APIs authored and Copybara-Service committed Dec 15, 2023
1 parent d1d165f commit 5c1f64e
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions google/apps/meet/v2beta/resource.proto
Original file line number Diff line number Diff line change
Expand Up @@ -287,6 +287,14 @@ message Recording {

// Output only. Current state.
State state = 3 [(google.api.field_behavior) = OUTPUT_ONLY];

// Output only. Timestamp when the recording started.
google.protobuf.Timestamp start_time = 4
[(google.api.field_behavior) = OUTPUT_ONLY];

// Output only. Timestamp when the recording ended.
google.protobuf.Timestamp end_time = 5
[(google.api.field_behavior) = OUTPUT_ONLY];
}

// Export location where a recording file is saved in Google Drive.
Expand Down Expand Up @@ -344,6 +352,14 @@ message Transcript {

// Output only. Current state.
State state = 3 [(google.api.field_behavior) = OUTPUT_ONLY];

// Output only. Timestamp when the transcript started.
google.protobuf.Timestamp start_time = 4
[(google.api.field_behavior) = OUTPUT_ONLY];

// Output only. Timestamp when the transcript stopped.
google.protobuf.Timestamp end_time = 5
[(google.api.field_behavior) = OUTPUT_ONLY];
}

// Google Docs location where the transcript file is saved.
Expand Down

0 comments on commit 5c1f64e

Please sign in to comment.