class Google::Apis::RecommendationengineV1beta1::GoogleCloudRecommendationengineV1beta1ListCatalogItemsResponse

Response message for ListCatalogItems method.

Attributes

catalog_items[RW]

The catalog items. Corresponds to the JSON property `catalogItems` @return [Array<Google::Apis::RecommendationengineV1beta1::GoogleCloudRecommendationengineV1beta1CatalogItem>]

next_page_token[RW]

If empty, the list is complete. If nonempty, the token to pass to the next request's ListCatalogItemRequest.page_token. Corresponds to the JSON property `nextPageToken` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/recommendationengine_v1beta1/classes.rb, line 879
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/recommendationengine_v1beta1/classes.rb, line 884
def update!(**args)
  @catalog_items = args[:catalog_items] if args.key?(:catalog_items)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end