Skip to content

Commit

Permalink
feat: [google-apps-meet] added start and end time fields to Recording…
Browse files Browse the repository at this point in the history
… and Transcript resources (#12130)

- [ ] Regenerate this pull request now.

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

Source-Link:
googleapis/googleapis@5c1f64e

Source-Link:
googleapis/googleapis-gen@7f5ce2a
Copy-Tag:
eyJwIjoicGFja2FnZXMvZ29vZ2xlLWFwcHMtbWVldC8uT3dsQm90LnlhbWwiLCJoIjoiN2Y1Y2UyYWIxOWU3MTBjZTlhMDg2ZDhiZWQzZjc0MzBiY2U0MjUwNiJ9

---------

Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
  • Loading branch information
gcf-owl-bot[bot] and gcf-owl-bot[bot] committed Dec 15, 2023
1 parent c6d9113 commit 6679d16
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
__version__ = "0.1.0" # {x-release-please-version}
__version__ = "0.0.0" # {x-release-please-version}
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
__version__ = "0.1.0" # {x-release-please-version}
__version__ = "0.0.0" # {x-release-please-version}
Original file line number Diff line number Diff line change
Expand Up @@ -423,6 +423,12 @@ class Recording(proto.Message):
recording session during the conference.
state (google.apps.meet_v2beta.types.Recording.State):
Output only. Current state.
start_time (google.protobuf.timestamp_pb2.Timestamp):
Output only. Timestamp when the recording
started.
end_time (google.protobuf.timestamp_pb2.Timestamp):
Output only. Timestamp when the recording
ended.
"""

class State(proto.Enum):
Expand Down Expand Up @@ -460,6 +466,16 @@ class State(proto.Enum):
number=3,
enum=State,
)
start_time: timestamp_pb2.Timestamp = proto.Field(
proto.MESSAGE,
number=4,
message=timestamp_pb2.Timestamp,
)
end_time: timestamp_pb2.Timestamp = proto.Field(
proto.MESSAGE,
number=5,
message=timestamp_pb2.Timestamp,
)


class DriveDestination(proto.Message):
Expand Down Expand Up @@ -512,6 +528,12 @@ class Transcript(proto.Message):
transcription session of the conference.
state (google.apps.meet_v2beta.types.Transcript.State):
Output only. Current state.
start_time (google.protobuf.timestamp_pb2.Timestamp):
Output only. Timestamp when the transcript
started.
end_time (google.protobuf.timestamp_pb2.Timestamp):
Output only. Timestamp when the transcript
stopped.
"""

class State(proto.Enum):
Expand Down Expand Up @@ -549,6 +571,16 @@ class State(proto.Enum):
number=3,
enum=State,
)
start_time: timestamp_pb2.Timestamp = proto.Field(
proto.MESSAGE,
number=4,
message=timestamp_pb2.Timestamp,
)
end_time: timestamp_pb2.Timestamp = proto.Field(
proto.MESSAGE,
number=5,
message=timestamp_pb2.Timestamp,
)


class DocsDestination(proto.Message):
Expand Down

0 comments on commit 6679d16

Please sign in to comment.