Class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryAppUninstallEvent
- Inherits:
-
Object
- Object
- Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryAppUninstallEvent
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/chromemanagement_v1/classes.rb,
lib/google/apis/chromemanagement_v1/representations.rb,
lib/google/apis/chromemanagement_v1/representations.rb
Overview
App uninstall data.
Instance Attribute Summary collapse
-
#app_id ⇒ String
App id.
-
#app_type ⇒ String
Type of app.
-
#app_uninstall_source ⇒ String
App uninstall source.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleChromeManagementV1TelemetryAppUninstallEvent
constructor
A new instance of GoogleChromeManagementV1TelemetryAppUninstallEvent.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleChromeManagementV1TelemetryAppUninstallEvent
Returns a new instance of GoogleChromeManagementV1TelemetryAppUninstallEvent.
3102 3103 3104 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3102 def initialize(**args) update!(**args) end |
Instance Attribute Details
#app_id ⇒ String
App id. For PWAs this is the start URL, and for extensions this is the
extension id.
Corresponds to the JSON property appId
3090 3091 3092 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3090 def app_id @app_id end |
#app_type ⇒ String
Type of app.
Corresponds to the JSON property appType
3095 3096 3097 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3095 def app_type @app_type end |
#app_uninstall_source ⇒ String
App uninstall source.
Corresponds to the JSON property appUninstallSource
3100 3101 3102 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3100 def app_uninstall_source @app_uninstall_source end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3107 3108 3109 3110 3111 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3107 def update!(**args) @app_id = args[:app_id] if args.key?(:app_id) @app_type = args[:app_type] if args.key?(:app_type) @app_uninstall_source = args[:app_uninstall_source] if args.key?(:app_uninstall_source) end |