class Google::Apis::AndroidenterpriseV1::InstallFailureEvent
An event generated when an app installation failed on a device
Attributes
The Android ID of the device. This field will always be present. Corresponds to the JSON property `deviceId` @return [String]
Additional details on the failure if applicable. Corresponds to the JSON property `failureDetails` @return [String]
The reason for the installation failure. This field will always be present. Corresponds to the JSON property `failureReason` @return [String]
The id of the product (e.g. “app:com.google.android.gm”) for which the install failure event occured. This field will always be present. Corresponds to the JSON property `productId` @return [String]
The ID of the user. This field will always be present. Corresponds to the JSON property `userId` @return [String]
Public Class Methods
# File lib/google/apis/androidenterprise_v1/classes.rb, line 1186 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/androidenterprise_v1/classes.rb, line 1191 def update!(**args) @device_id = args[:device_id] if args.key?(:device_id) @failure_details = args[:failure_details] if args.key?(:failure_details) @failure_reason = args[:failure_reason] if args.key?(:failure_reason) @product_id = args[:product_id] if args.key?(:product_id) @user_id = args[:user_id] if args.key?(:user_id) end