Class: Google::Apis::MerchantapiPromotionsV1beta::ListPromotionsResponse
- Inherits:
-
Object
- Object
- Google::Apis::MerchantapiPromotionsV1beta::ListPromotionsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/merchantapi_promotions_v1beta/classes.rb,
lib/google/apis/merchantapi_promotions_v1beta/representations.rb,
lib/google/apis/merchantapi_promotions_v1beta/representations.rb
Overview
Response message for the ListPromotions method.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
A token, which can be sent as
page_tokento retrieve the next page. -
#promotions ⇒ Array<Google::Apis::MerchantapiPromotionsV1beta::Promotion>
The processed promotions from the specified account.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListPromotionsResponse
constructor
A new instance of ListPromotionsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListPromotionsResponse
Returns a new instance of ListPromotionsResponse.
593 594 595 |
# File 'lib/google/apis/merchantapi_promotions_v1beta/classes.rb', line 593 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
A token, which can be sent as page_token to retrieve the next page. If this
field is omitted, there are no subsequent pages.
Corresponds to the JSON property nextPageToken
586 587 588 |
# File 'lib/google/apis/merchantapi_promotions_v1beta/classes.rb', line 586 def next_page_token @next_page_token end |
#promotions ⇒ Array<Google::Apis::MerchantapiPromotionsV1beta::Promotion>
The processed promotions from the specified account.
Corresponds to the JSON property promotions
591 592 593 |
# File 'lib/google/apis/merchantapi_promotions_v1beta/classes.rb', line 591 def promotions @promotions end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
598 599 600 601 |
# File 'lib/google/apis/merchantapi_promotions_v1beta/classes.rb', line 598 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @promotions = args[:promotions] if args.key?(:promotions) end |