Class: Google::Apis::RecommenderV1beta1::GoogleCloudRecommenderV1beta1ListInsightsResponse

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

Overview

Response to the ListInsights method.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudRecommenderV1beta1ListInsightsResponse

Returns a new instance of GoogleCloudRecommenderV1beta1ListInsightsResponse.



475
476
477
# File 'lib/google/apis/recommender_v1beta1/classes.rb', line 475

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

Instance Attribute Details

#insightsArray<Google::Apis::RecommenderV1beta1::GoogleCloudRecommenderV1beta1Insight>

The set of insights for the parent resource. Corresponds to the JSON property insights



467
468
469
# File 'lib/google/apis/recommender_v1beta1/classes.rb', line 467

def insights
  @insights
end

#next_page_tokenString

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

Returns:

  • (String)


473
474
475
# File 'lib/google/apis/recommender_v1beta1/classes.rb', line 473

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



480
481
482
483
# File 'lib/google/apis/recommender_v1beta1/classes.rb', line 480

def update!(**args)
  @insights = args[:insights] if args.key?(:insights)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end