Class: Google::Apis::AndroidpublisherV3::RecentUpdateEvent
- Inherits:
-
Object
- Object
- Google::Apis::AndroidpublisherV3::RecentUpdateEvent
- 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
A recent update event.
Instance Attribute Summary collapse
-
#event_time ⇒ String
The timestamp of the update.
-
#play_app_package_name ⇒ String
The package name of the app.
-
#update_type ⇒ String
The type of the update event.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RecentUpdateEvent
constructor
A new instance of RecentUpdateEvent.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ RecentUpdateEvent
Returns a new instance of RecentUpdateEvent.
8491 8492 8493 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 8491 def initialize(**args) update!(**args) end |
Instance Attribute Details
#event_time ⇒ String
The timestamp of the update.
Corresponds to the JSON property eventTime
8479 8480 8481 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 8479 def event_time @event_time end |
#play_app_package_name ⇒ String
The package name of the app.
Corresponds to the JSON property playAppPackageName
8484 8485 8486 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 8484 def play_app_package_name @play_app_package_name end |
#update_type ⇒ String
The type of the update event.
Corresponds to the JSON property updateType
8489 8490 8491 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 8489 def update_type @update_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8496 8497 8498 8499 8500 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 8496 def update!(**args) @event_time = args[:event_time] if args.key?(:event_time) @play_app_package_name = args[:play_app_package_name] if args.key?(:play_app_package_name) @update_type = args[:update_type] if args.key?(:update_type) end |