Class: Google::Apis::CloudsearchV1::ValueFilter

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/cloudsearch_v1/classes.rb,
generated/google/apis/cloudsearch_v1/representations.rb,
generated/google/apis/cloudsearch_v1/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ValueFilter

Returns a new instance of ValueFilter.



5125
5126
5127
# File 'generated/google/apis/cloudsearch_v1/classes.rb', line 5125

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

Instance Attribute Details

#operator_nameString

The operator_name applied to the query, such as price_greater_than. The filter can work against both types of filters defined in the schema for your data source:

  1. operator_name, where the query filters results by the property that matches the value.
  2. greater_than_operator_name or less_than_operator_name in your schema. The query filters the results for the property values that are greater than or less than the supplied value in the query. Corresponds to the JSON property operatorName

Returns:

  • (String)


5118
5119
5120
# File 'generated/google/apis/cloudsearch_v1/classes.rb', line 5118

def operator_name
  @operator_name
end

#valueGoogle::Apis::CloudsearchV1::Value

Definition of a single value with generic type. Corresponds to the JSON property value



5123
5124
5125
# File 'generated/google/apis/cloudsearch_v1/classes.rb', line 5123

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5130
5131
5132
5133
# File 'generated/google/apis/cloudsearch_v1/classes.rb', line 5130

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