Class: Google::Apis::CloudsearchV1::FilterOptions

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

Overview

Filter options to be applied on query.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ FilterOptions

Returns a new instance of FilterOptions.



7808
7809
7810
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 7808

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

Instance Attribute Details

#filterGoogle::Apis::CloudsearchV1::Filter

A generic way of expressing filters in a query, which supports two approaches: 1. Setting a ValueFilter. The name must match an operator_name defined in the schema for your data source. 2. Setting a CompositeFilter. The filters are evaluated using the logical operator. The top-level operators can only be either an AND or a NOT. AND can appear only at the top-most level. OR can appear only under a top-level AND. Corresponds to the JSON property filter



7799
7800
7801
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 7799

def filter
  @filter
end

#object_typeString

If object_type is set, only objects of that type are returned. This should correspond to the name of the object that was registered within the definition of schema. The maximum length is 256 characters. Corresponds to the JSON property objectType

Returns:

  • (String)


7806
7807
7808
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 7806

def object_type
  @object_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7813
7814
7815
7816
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 7813

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