Class: Google::Apis::CloudsearchV1::AckInfo

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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_countFixnum

Output only. Number of meeting devices that have not acked yet. Corresponds to the JSON property unackedDeviceCount

Returns:

  • (Fixnum)


60
61
62
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 60

def unacked_device_count
  @unacked_device_count
end

#unacked_device_idsArray<String>

Output only. IDs of meeting devices (at most ten are provided) that have not acked yet. Corresponds to the JSON property unackedDeviceIds

Returns:

  • (Array<String>)


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