Class: Google::Apis::ManufacturersV1::ListProductsResponse
- Inherits:
-
Object
- Object
- Google::Apis::ManufacturersV1::ListProductsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/manufacturers_v1/classes.rb,
generated/google/apis/manufacturers_v1/representations.rb,
generated/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.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListProductsResponse
Returns a new instance of ListProductsResponse
467 468 469 |
# File 'generated/google/apis/manufacturers_v1/classes.rb', line 467 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
460 461 462 |
# File 'generated/google/apis/manufacturers_v1/classes.rb', line 460 def next_page_token @next_page_token end |
#products ⇒ Array<Google::Apis::ManufacturersV1::Product>
List of the products.
Corresponds to the JSON property products
465 466 467 |
# File 'generated/google/apis/manufacturers_v1/classes.rb', line 465 def products @products end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
472 473 474 475 |
# File 'generated/google/apis/manufacturers_v1/classes.rb', line 472 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @products = args[:products] if args.key?(:products) end |