Class: Google::Apis::RecommendationengineV1beta1::GoogleCloudRecommendationengineV1beta1PredictResponse

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

Overview

Response message for predict method.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudRecommendationengineV1beta1PredictResponse

Returns a new instance of GoogleCloudRecommendationengineV1beta1PredictResponse.



1120
1121
1122
# File 'lib/google/apis/recommendationengine_v1beta1/classes.rb', line 1120

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

Instance Attribute Details

#dry_runBoolean Also known as: dry_run?

True if the dryRun property was set in the request. Corresponds to the JSON property dryRun

Returns:

  • (Boolean)


1088
1089
1090
# File 'lib/google/apis/recommendationengine_v1beta1/classes.rb', line 1088

def dry_run
  @dry_run
end

#items_missing_in_catalogArray<String>

IDs of items in the request that were missing from the catalog. Corresponds to the JSON property itemsMissingInCatalog

Returns:

  • (Array<String>)


1094
1095
1096
# File 'lib/google/apis/recommendationengine_v1beta1/classes.rb', line 1094

def items_missing_in_catalog
  @items_missing_in_catalog
end

#metadataHash<String,Object>

Additional domain specific prediction response metadata. Corresponds to the JSON property metadata

Returns:

  • (Hash<String,Object>)


1099
1100
1101
# File 'lib/google/apis/recommendationengine_v1beta1/classes.rb', line 1099

def 
  @metadata
end

#next_page_tokenString

If empty, the list is complete. If nonempty, the token to pass to the next request's PredictRequest.page_token. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


1105
1106
1107
# File 'lib/google/apis/recommendationengine_v1beta1/classes.rb', line 1105

def next_page_token
  @next_page_token
end

#recommendation_tokenString

A unique recommendation token. This should be included in the user event logs resulting from this recommendation, which enables accurate attribution of recommendation model performance. Corresponds to the JSON property recommendationToken

Returns:

  • (String)


1112
1113
1114
# File 'lib/google/apis/recommendationengine_v1beta1/classes.rb', line 1112

def recommendation_token
  @recommendation_token
end

#resultsArray<Google::Apis::RecommendationengineV1beta1::GoogleCloudRecommendationengineV1beta1PredictResponsePredictionResult>

A list of recommended items. The order represents the ranking (from the most relevant item to the least). Corresponds to the JSON property results



1118
1119
1120
# File 'lib/google/apis/recommendationengine_v1beta1/classes.rb', line 1118

def results
  @results
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1125
1126
1127
1128
1129
1130
1131
1132
# File 'lib/google/apis/recommendationengine_v1beta1/classes.rb', line 1125

def update!(**args)
  @dry_run = args[:dry_run] if args.key?(:dry_run)
  @items_missing_in_catalog = args[:items_missing_in_catalog] if args.key?(:items_missing_in_catalog)
  @metadata = args[:metadata] if args.key?(:metadata)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @recommendation_token = args[:recommendation_token] if args.key?(:recommendation_token)
  @results = args[:results] if args.key?(:results)
end