class Google::Apis::RetailV2beta::GoogleCloudRetailV2betaListCatalogsResponse
Response for CatalogService.ListCatalogs method.
Attributes
catalogs[RW]
All the customer's Catalogs. Corresponds to the JSON property `catalogs` @return [Array<Google::Apis::RetailV2beta::GoogleCloudRetailV2betaCatalog>]
next_page_token[RW]
A token that can be sent as ListCatalogsRequest.page_token to retrieve the next page. If this field is omitted, there are no subsequent pages. Corresponds to the JSON property `nextPageToken` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/retail_v2beta/classes.rb, line 2083 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/retail_v2beta/classes.rb, line 2088 def update!(**args) @catalogs = args[:catalogs] if args.key?(:catalogs) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end