Class: Google::Apis::AndroidpublisherV3::RecentUpdateEvent

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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_timeString

The timestamp of the update. Corresponds to the JSON property eventTime

Returns:

  • (String)


8479
8480
8481
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 8479

def event_time
  @event_time
end

#play_app_package_nameString

The package name of the app. Corresponds to the JSON property playAppPackageName

Returns:

  • (String)


8484
8485
8486
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 8484

def play_app_package_name
  @play_app_package_name
end

#update_typeString

The type of the update event. Corresponds to the JSON property updateType

Returns:

  • (String)


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