Class: Google::Apis::FirestoreV1::ArrayValue
- Inherits:
-
Object
- Object
- Google::Apis::FirestoreV1::ArrayValue
- 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
-
#values ⇒ Array<Google::Apis::FirestoreV1::Value>
Values in the array.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ArrayValue
constructor
A new instance of ArrayValue.
-
#update!(**args) ⇒ Object
Update properties of this object.
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
#values ⇒ Array<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 |