Class: Google::Apis::DatastoreV1::ArrayValue

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/datastore_v1/classes.rb,
generated/google/apis/datastore_v1/representations.rb,
generated/google/apis/datastore_v1/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.



76
77
78
# File 'generated/google/apis/datastore_v1/classes.rb', line 76

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

Instance Attribute Details

#valuesArray<Google::Apis::DatastoreV1::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



74
75
76
# File 'generated/google/apis/datastore_v1/classes.rb', line 74

def values
  @values
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



81
82
83
# File 'generated/google/apis/datastore_v1/classes.rb', line 81

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