Class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryAppUninstallEvent

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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleChromeManagementV1TelemetryAppUninstallEvent

Returns a new instance of GoogleChromeManagementV1TelemetryAppUninstallEvent.



3006
3007
3008
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3006

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#app_idString

App id. For PWAs this is the start URL, and for extensions this is the extension id. Corresponds to the JSON property appId

Returns:

  • (String)


2994
2995
2996
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2994

def app_id
  @app_id
end

#app_typeString

Type of app. Corresponds to the JSON property appType

Returns:

  • (String)


2999
3000
3001
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2999

def app_type
  @app_type
end

#app_uninstall_sourceString

App uninstall source. Corresponds to the JSON property appUninstallSource

Returns:

  • (String)


3004
3005
3006
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3004

def app_uninstall_source
  @app_uninstall_source
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3011
3012
3013
3014
3015
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3011

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