Class: Google::Apis::CloudsearchV1::RecordingSessionInfo
- Inherits:
-
Object
- Object
- Google::Apis::CloudsearchV1::RecordingSessionInfo
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudsearch_v1/classes.rb,
lib/google/apis/cloudsearch_v1/representations.rb,
lib/google/apis/cloudsearch_v1/representations.rb
Overview
Information about a recording session.
Instance Attribute Summary collapse
-
#owner_email ⇒ String
Input only.
-
#recording_session_id ⇒ String
A unique server-generated ID for the recording session.
-
#session_state_info ⇒ Google::Apis::CloudsearchV1::SessionStateInfo
Information about the state of a (recording, broadcast, transcription...) session in a conference.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RecordingSessionInfo
constructor
A new instance of RecordingSessionInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ RecordingSessionInfo
Returns a new instance of RecordingSessionInfo.
17131 17132 17133 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 17131 def initialize(**args) update!(**args) end |
Instance Attribute Details
#owner_email ⇒ String
Input only. Deprecated field, should not be used.
Corresponds to the JSON property ownerEmail
17118 17119 17120 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 17118 def owner_email @owner_email end |
#recording_session_id ⇒ String
A unique server-generated ID for the recording session.
Corresponds to the JSON property recordingSessionId
17123 17124 17125 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 17123 def recording_session_id @recording_session_id end |
#session_state_info ⇒ Google::Apis::CloudsearchV1::SessionStateInfo
Information about the state of a (recording, broadcast, transcription...)
session in a conference.
Corresponds to the JSON property sessionStateInfo
17129 17130 17131 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 17129 def session_state_info @session_state_info end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
17136 17137 17138 17139 17140 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 17136 def update!(**args) @owner_email = args[:owner_email] if args.key?(:owner_email) @recording_session_id = args[:recording_session_id] if args.key?(:recording_session_id) @session_state_info = args[:session_state_info] if args.key?(:session_state_info) end |