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
39 40 41 |
# File 'generated/google/apis/manufacturers_v1/classes.rb', line 39 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
37 38 39 |
# File 'generated/google/apis/manufacturers_v1/classes.rb', line 37 def next_page_token @next_page_token end |
#products ⇒ Array<Google::Apis::ManufacturersV1::Product>
List of the products.
Corresponds to the JSON property products
32 33 34 |
# File 'generated/google/apis/manufacturers_v1/classes.rb', line 32 def products @products end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
44 45 46 47 |
# File 'generated/google/apis/manufacturers_v1/classes.rb', line 44 def update!(**args) @products = args[:products] if args.key?(:products) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |