Class: Google::Apis::RetailV2beta::GoogleCloudRetailV2betaSearchResponseFacet

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

Overview

A facet result.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudRetailV2betaSearchResponseFacet

Returns a new instance of GoogleCloudRetailV2betaSearchResponseFacet.



7717
7718
7719
# File 'lib/google/apis/retail_v2beta/classes.rb', line 7717

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

Instance Attribute Details

#dynamic_facetBoolean Also known as: dynamic_facet?

Whether the facet is dynamically generated. Corresponds to the JSON property dynamicFacet

Returns:

  • (Boolean)


7704
7705
7706
# File 'lib/google/apis/retail_v2beta/classes.rb', line 7704

def dynamic_facet
  @dynamic_facet
end

#keyString

The key for this facet. E.g., "colorFamilies" or "price" or "attributes.attr1". Corresponds to the JSON property key

Returns:

  • (String)


7710
7711
7712
# File 'lib/google/apis/retail_v2beta/classes.rb', line 7710

def key
  @key
end

#valuesArray<Google::Apis::RetailV2beta::GoogleCloudRetailV2betaSearchResponseFacetFacetValue>

The facet values for this field. Corresponds to the JSON property values



7715
7716
7717
# File 'lib/google/apis/retail_v2beta/classes.rb', line 7715

def values
  @values
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7722
7723
7724
7725
7726
# File 'lib/google/apis/retail_v2beta/classes.rb', line 7722

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