Class: Google::Apis::Adexchangebuyer2V2beta1::ListProductsResponse
- Inherits:
-
Object
- Object
- Google::Apis::Adexchangebuyer2V2beta1::ListProductsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/adexchangebuyer2_v2beta1/classes.rb,
lib/google/apis/adexchangebuyer2_v2beta1/representations.rb,
lib/google/apis/adexchangebuyer2_v2beta1/representations.rb
Overview
Response message for listing products visible to the buyer.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
List pagination support.
-
#products ⇒ Array<Google::Apis::Adexchangebuyer2V2beta1::Product>
The list of matching products at their head revision number.
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.
2503 2504 2505 |
# File 'lib/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 2503 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
List pagination support.
Corresponds to the JSON property nextPageToken
2496 2497 2498 |
# File 'lib/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 2496 def next_page_token @next_page_token end |
#products ⇒ Array<Google::Apis::Adexchangebuyer2V2beta1::Product>
The list of matching products at their head revision number.
Corresponds to the JSON property products
2501 2502 2503 |
# File 'lib/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 2501 def products @products end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2508 2509 2510 2511 |
# File 'lib/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 2508 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @products = args[:products] if args.key?(:products) end |