Class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaSearchResponseGuidedSearchResultRefinementAttribute
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaSearchResponseGuidedSearchResultRefinementAttribute
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/discoveryengine_v1alpha/classes.rb,
lib/google/apis/discoveryengine_v1alpha/representations.rb,
lib/google/apis/discoveryengine_v1alpha/representations.rb more...
Overview
Useful attribute for search result refinements.
Instance Attribute Summary collapse
-
#attribute_key ⇒ String
Attribute key used to refine the results e.g.
-
#attribute_value ⇒ String
Attribute value used to refine the results e.g.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaSearchResponseGuidedSearchResultRefinementAttribute
constructor
A new instance of GoogleCloudDiscoveryengineV1alphaSearchResponseGuidedSearchResultRefinementAttribute.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaSearchResponseGuidedSearchResultRefinementAttribute
Returns a new instance of GoogleCloudDiscoveryengineV1alphaSearchResponseGuidedSearchResultRefinementAttribute.
6162 6163 6164 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 6162 def initialize(**args) update!(**args) end |
Instance Attribute Details
#attribute_key ⇒ String
Attribute key used to refine the results e.g. 'movie_type'.
Corresponds to the JSON property attributeKey
6155 6156 6157 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 6155 def attribute_key @attribute_key end |
#attribute_value ⇒ String
Attribute value used to refine the results e.g. 'drama'.
Corresponds to the JSON property attributeValue
6160 6161 6162 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 6160 def attribute_value @attribute_value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6167 6168 6169 6170 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 6167 def update!(**args) @attribute_key = args[:attribute_key] if args.key?(:attribute_key) @attribute_value = args[:attribute_value] if args.key?(:attribute_value) end |