Class: Google::Apis::DatastoreV1beta3::ArrayValue

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/datastore_v1beta3/classes.rb,
lib/google/apis/datastore_v1beta3/representations.rb,
lib/google/apis/datastore_v1beta3/representations.rb

Overview

An array value.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ArrayValue

Returns a new instance of ArrayValue.



193
194
195
# File 'lib/google/apis/datastore_v1beta3/classes.rb', line 193

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#valuesArray<Google::Apis::DatastoreV1beta3::Value>

Values in the array. The order of values in an array is preserved as long as all values have identical settings for 'exclude_from_indexes'. Corresponds to the JSON property values



191
192
193
# File 'lib/google/apis/datastore_v1beta3/classes.rb', line 191

def values
  @values
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



198
199
200
# File 'lib/google/apis/datastore_v1beta3/classes.rb', line 198

def update!(**args)
  @values = args[:values] if args.key?(:values)
end