class Google::Apis::DatastoreV1beta3::PropertyFilter

A filter on a specific property.

Attributes

op[RW]

The operator to filter by. Corresponds to the JSON property `op` @return [String]

property[RW]

A reference to a property relative to the kind expressions. Corresponds to the JSON property `property` @return [Google::Apis::DatastoreV1beta3::PropertyReference]

value[RW]

A message that can hold any of the supported value types and associated metadata. Corresponds to the JSON property `value` @return [Google::Apis::DatastoreV1beta3::Value]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/datastore_v1beta3/classes.rb, line 1237
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_v1beta3/classes.rb, line 1242
def update!(**args)
  @op = args[:op] if args.key?(:op)
  @property = args[:property] if args.key?(:property)
  @value = args[:value] if args.key?(:value)
end