Class: Google::Apis::AndroidpublisherV3::ListOneTimeProductsResponse
- Inherits:
-
Object
- Object
- Google::Apis::AndroidpublisherV3::ListOneTimeProductsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/androidpublisher_v3/classes.rb,
lib/google/apis/androidpublisher_v3/representations.rb,
lib/google/apis/androidpublisher_v3/representations.rb
Overview
Response message for ListOneTimeProducts.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
A token, which can be sent as
page_tokento retrieve the next page. -
#one_time_products ⇒ Array<Google::Apis::AndroidpublisherV3::OneTimeProduct>
The one-time products from the specified app.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListOneTimeProductsResponse
constructor
A new instance of ListOneTimeProductsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListOneTimeProductsResponse
Returns a new instance of ListOneTimeProductsResponse.
5112 5113 5114 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 5112 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
5105 5106 5107 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 5105 def next_page_token @next_page_token end |
#one_time_products ⇒ Array<Google::Apis::AndroidpublisherV3::OneTimeProduct>
The one-time products from the specified app.
Corresponds to the JSON property oneTimeProducts
5110 5111 5112 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 5110 def one_time_products @one_time_products end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5117 5118 5119 5120 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 5117 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @one_time_products = args[:one_time_products] if args.key?(:one_time_products) end |