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

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

Overview

An array value.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ArrayValue

Returns a new instance of ArrayValue.



442
443
444
# File 'generated/google/apis/datastore_v1beta3/classes.rb', line 442

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

Instance Attribute Details

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

Values in the array. The order of this array may not be preserved if it contains a mix of indexed and unindexed values. Corresponds to the JSON property values



440
441
442
# File 'generated/google/apis/datastore_v1beta3/classes.rb', line 440

def values
  @values
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



447
448
449
# File 'generated/google/apis/datastore_v1beta3/classes.rb', line 447

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