Class: Google::Apis::ManufacturersV1::ListProductsResponse
- Inherits:
-
Object
- Object
- Google::Apis::ManufacturersV1::ListProductsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/manufacturers_v1/classes.rb,
lib/google/apis/manufacturers_v1/representations.rb,
lib/google/apis/manufacturers_v1/representations.rb
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
The token for the retrieval of the next page of product statuses.
-
#products ⇒ Array<Google::Apis::ManufacturersV1::Product>
List of the products.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListProductsResponse
constructor
A new instance of ListProductsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListProductsResponse
Returns a new instance of ListProductsResponse.
721 722 723 |
# File 'lib/google/apis/manufacturers_v1/classes.rb', line 721 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
The token for the retrieval of the next page of product statuses.
Corresponds to the JSON property nextPageToken
714 715 716 |
# File 'lib/google/apis/manufacturers_v1/classes.rb', line 714 def next_page_token @next_page_token end |
#products ⇒ Array<Google::Apis::ManufacturersV1::Product>
List of the products.
Corresponds to the JSON property products
719 720 721 |
# File 'lib/google/apis/manufacturers_v1/classes.rb', line 719 def products @products end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
726 727 728 729 |
# File 'lib/google/apis/manufacturers_v1/classes.rb', line 726 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @products = args[:products] if args.key?(:products) end |