class Google::Apis::DatastoreV1::ArrayValue

An array value.

Attributes

values[RW]

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` @return [Array<Google::Apis::DatastoreV1::Value>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/datastore_v1/classes.rb, line 75
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/datastore_v1/classes.rb, line 80
def update!(**args)
  @values = args[:values] if args.key?(:values)
end