Class: Google::Apis::CloudsearchV1::SessionStateInfo
- Inherits:
-
Object
- Object
- Google::Apis::CloudsearchV1::SessionStateInfo
- 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 the state of a (recording, broadcast, transcription...) session in a conference.
Instance Attribute Summary collapse
-
#ack_info ⇒ Google::Apis::CloudsearchV1::AckInfo
Information about how devices in a meeting have acked for a session/operation.
-
#language_config ⇒ Google::Apis::CloudsearchV1::LanguageConfig
The language configuration for the session.
-
#last_actor_device_id ⇒ String
Output only.
-
#max_end_time ⇒ String
Output only.
-
#session_state ⇒ String
State of the session.
-
#session_stop_reason ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SessionStateInfo
constructor
A new instance of SessionStateInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SessionStateInfo
Returns a new instance of SessionStateInfo.
15400 15401 15402 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 15400 def initialize(**args) update!(**args) end |
Instance Attribute Details
#ack_info ⇒ Google::Apis::CloudsearchV1::AckInfo
Information about how devices in a meeting have acked for a session/operation.
Corresponds to the JSON property ackInfo
15370 15371 15372 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 15370 def ack_info @ack_info end |
#language_config ⇒ Google::Apis::CloudsearchV1::LanguageConfig
The language configuration for the session.
Corresponds to the JSON property languageConfig
15375 15376 15377 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 15375 def language_config @language_config end |
#last_actor_device_id ⇒ String
Output only. The device id of the actor is set if the current state is a
result of a user action, is empty otherwise.
Corresponds to the JSON property lastActorDeviceId
15381 15382 15383 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 15381 def last_actor_device_id @last_actor_device_id end |
#max_end_time ⇒ String
Output only. The max end time of the session, at this time the session will be
force stopped/terminated. Clients are expected to use this timestamp to warn
users about the force stop.
Corresponds to the JSON property maxEndTime
15388 15389 15390 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 15388 def max_end_time @max_end_time end |
#session_state ⇒ String
State of the session.
Corresponds to the JSON property sessionState
15393 15394 15395 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 15393 def session_state @session_state end |
#session_stop_reason ⇒ String
Output only. The reason the session was transitioned to STOPPED state.
Corresponds to the JSON property sessionStopReason
15398 15399 15400 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 15398 def session_stop_reason @session_stop_reason end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
15405 15406 15407 15408 15409 15410 15411 15412 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 15405 def update!(**args) @ack_info = args[:ack_info] if args.key?(:ack_info) @language_config = args[:language_config] if args.key?(:language_config) @last_actor_device_id = args[:last_actor_device_id] if args.key?(:last_actor_device_id) @max_end_time = args[:max_end_time] if args.key?(:max_end_time) @session_state = args[:session_state] if args.key?(:session_state) @session_stop_reason = args[:session_stop_reason] if args.key?(:session_stop_reason) end |