Class: Google::Apis::AndroidpublisherV3::ListSubscriptionsResponse
- Inherits:
-
Object
- Object
- Google::Apis::AndroidpublisherV3::ListSubscriptionsResponse
- 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 ListSubscriptions.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
A token, which can be sent as
page_tokento retrieve the next page. -
#subscriptions ⇒ Array<Google::Apis::AndroidpublisherV3::Subscription>
The subscriptions from the specified app.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListSubscriptionsResponse
constructor
A new instance of ListSubscriptionsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListSubscriptionsResponse
Returns a new instance of ListSubscriptionsResponse.
3505 3506 3507 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 3505 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
3498 3499 3500 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 3498 def next_page_token @next_page_token end |
#subscriptions ⇒ Array<Google::Apis::AndroidpublisherV3::Subscription>
The subscriptions from the specified app.
Corresponds to the JSON property subscriptions
3503 3504 3505 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 3503 def subscriptions @subscriptions end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3510 3511 3512 3513 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 3510 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @subscriptions = args[:subscriptions] if args.key?(:subscriptions) end |