Class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaSearchResponseFacet
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaSearchResponseFacet
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/discoveryengine_v1beta/classes.rb,
lib/google/apis/discoveryengine_v1beta/representations.rb,
lib/google/apis/discoveryengine_v1beta/representations.rb
Overview
A facet result.
Instance Attribute Summary collapse
-
#dynamic_facet ⇒ Boolean
(also: #dynamic_facet?)
Whether the facet is dynamically generated.
-
#key ⇒ String
The key for this facet.
-
#values ⇒ Array<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaSearchResponseFacetFacetValue>
The facet values for this field.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1betaSearchResponseFacet
constructor
A new instance of GoogleCloudDiscoveryengineV1betaSearchResponseFacet.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1betaSearchResponseFacet
Returns a new instance of GoogleCloudDiscoveryengineV1betaSearchResponseFacet.
4475 4476 4477 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 4475 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dynamic_facet ⇒ Boolean Also known as: dynamic_facet?
Whether the facet is dynamically generated.
Corresponds to the JSON property dynamicFacet
4461 4462 4463 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 4461 def dynamic_facet @dynamic_facet end |
#key ⇒ String
The key for this facet. E.g., "colors" or "price". It matches SearchRequest.
FacetSpec.FacetKey.key.
Corresponds to the JSON property key
4468 4469 4470 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 4468 def key @key end |
#values ⇒ Array<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaSearchResponseFacetFacetValue>
The facet values for this field.
Corresponds to the JSON property values
4473 4474 4475 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 4473 def values @values end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4480 4481 4482 4483 4484 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 4480 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 |