Class: Google::Apis::DatastoreV1::ArrayValue
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DatastoreV1::ArrayValue
 
- 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
- 
  
    
      #values  ⇒ Array<Google::Apis::DatastoreV1::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. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
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
#values ⇒ Array<Google::Apis::DatastoreV1::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
| 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 |