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.
4794 4795 4796 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 4794 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
4787 4788 4789 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 4787 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
4792 4793 4794 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 4792 def subscriptions @subscriptions end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4799 4800 4801 4802 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 4799 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @subscriptions = args[:subscriptions] if args.key?(:subscriptions) end |