Class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaRecommendResponseRecommendationResult
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaRecommendResponseRecommendationResult
- 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
Overview
RecommendationResult represents a generic recommendation result with associated metadata.
Instance Attribute Summary collapse
-
#document ⇒ Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaDocument
Document captures all raw metadata information of items to be recommended or searched.
-
#id ⇒ String
Resource ID of the recommended Document.
-
#metadata ⇒ Hash<String,Object>
Additional Document metadata or annotations.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaRecommendResponseRecommendationResult
constructor
A new instance of GoogleCloudDiscoveryengineV1alphaRecommendResponseRecommendationResult.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaRecommendResponseRecommendationResult
Returns a new instance of GoogleCloudDiscoveryengineV1alphaRecommendResponseRecommendationResult.
9857 9858 9859 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 9857 def initialize(**args) update!(**args) end |
Instance Attribute Details
#document ⇒ Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaDocument
Document captures all raw metadata information of items to be recommended or
searched.
Corresponds to the JSON property document
9843 9844 9845 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 9843 def document @document end |
#id ⇒ String
Resource ID of the recommended Document.
Corresponds to the JSON property id
9848 9849 9850 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 9848 def id @id end |
#metadata ⇒ Hash<String,Object>
Additional Document metadata or annotations. Possible values: * score
:
Recommendation score in double value. Is set if returnScore
is set to true
in RecommendRequest.params.
Corresponds to the JSON property metadata
9855 9856 9857 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 9855 def @metadata end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9862 9863 9864 9865 9866 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 9862 def update!(**args) @document = args[:document] if args.key?(:document) @id = args[:id] if args.key?(:id) @metadata = args[:metadata] if args.key?(:metadata) end |