Class: Google::Apis::CloudsearchV1::AckInfo
- Inherits:
-
Object
- Object
- Google::Apis::CloudsearchV1::AckInfo
- 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 how devices in a meeting have acked for a session/operation.
Instance Attribute Summary collapse
-
#unacked_device_count ⇒ Fixnum
Output only.
-
#unacked_device_ids ⇒ Array<String>
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AckInfo
constructor
A new instance of AckInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ AckInfo
Returns a new instance of AckInfo.
68 69 70 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 68 def initialize(**args) update!(**args) end |
Instance Attribute Details
#unacked_device_count ⇒ Fixnum
Output only. Number of meeting devices that have not acked yet.
Corresponds to the JSON property unackedDeviceCount
60 61 62 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 60 def unacked_device_count @unacked_device_count end |
#unacked_device_ids ⇒ Array<String>
Output only. IDs of meeting devices (at most ten are provided) that have not
acked yet.
Corresponds to the JSON property unackedDeviceIds
66 67 68 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 66 def unacked_device_ids @unacked_device_ids end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
73 74 75 76 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 73 def update!(**args) @unacked_device_count = args[:unacked_device_count] if args.key?(:unacked_device_count) @unacked_device_ids = args[:unacked_device_ids] if args.key?(:unacked_device_ids) end |