class Google::Apis::RecommenderV1beta1::GoogleCloudRecommenderV1beta1ListInsightsResponse
Response to the `ListInsights` method.
Attributes
insights[RW]
The set of insights for the `parent` resource. Corresponds to the JSON property `insights` @return [Array<Google::Apis::RecommenderV1beta1::GoogleCloudRecommenderV1beta1Insight>]
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]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/recommender_v1beta1/classes.rb, line 231 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 236 def update!(**args) @insights = args[:insights] if args.key?(:insights) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end