Class: Google::Apis::AndroidpublisherV3::ListRecentUpdateEventsResponse
- Inherits:
-
Object
- Object
- Google::Apis::AndroidpublisherV3::ListRecentUpdateEventsResponse
- 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 ListRecentUpdateEvents.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
A token, which can be sent as
page_tokento retrieve the next page. -
#recent_update_events ⇒ Array<Google::Apis::AndroidpublisherV3::RecentUpdateEvent>
The list of recent update events.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListRecentUpdateEventsResponse
constructor
A new instance of ListRecentUpdateEventsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListRecentUpdateEventsResponse
Returns a new instance of ListRecentUpdateEventsResponse.
5811 5812 5813 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 5811 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
5804 5805 5806 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 5804 def next_page_token @next_page_token end |
#recent_update_events ⇒ Array<Google::Apis::AndroidpublisherV3::RecentUpdateEvent>
The list of recent update events.
Corresponds to the JSON property recentUpdateEvents
5809 5810 5811 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 5809 def recent_update_events @recent_update_events end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5816 5817 5818 5819 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 5816 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @recent_update_events = args[:recent_update_events] if args.key?(:recent_update_events) end |