class Google::Apis::RecommenderV1beta1::GoogleCloudRecommenderV1beta1ListRecommendationsResponse
Response to the `ListRecommendations` method.
Attributes
next_page_token[RW]
A token that can be used to request the next page of results. This field is empty if there are no additional results. Corresponds to the JSON property `nextPageToken` @return [String]
recommendations[RW]
The set of recommendations for the `parent` resource. Corresponds to the JSON property `recommendations` @return [Array<Google::Apis::RecommenderV1beta1::GoogleCloudRecommenderV1beta1Recommendation>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/recommender_v1beta1/classes.rb, line 257 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/recommender_v1beta1/classes.rb, line 262 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @recommendations = args[:recommendations] if args.key?(:recommendations) end