Class: Google::Apis::FirestoreV1::ArrayValue

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



118
119
120
# File 'lib/google/apis/firestore_v1/classes.rb', line 118

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

Instance Attribute Details

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

Values in the array. Corresponds to the JSON property values



116
117
118
# File 'lib/google/apis/firestore_v1/classes.rb', line 116

def values
  @values
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



123
124
125
# File 'lib/google/apis/firestore_v1/classes.rb', line 123

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