class Google::Apis::AndroidenterpriseV1::InstallFailureEvent

An event generated when an app installation failed on a device

Attributes

device_id[RW]

The Android ID of the device. This field will always be present. Corresponds to the JSON property `deviceId` @return [String]

failure_details[RW]

Additional details on the failure if applicable. Corresponds to the JSON property `failureDetails` @return [String]

failure_reason[RW]

The reason for the installation failure. This field will always be present. Corresponds to the JSON property `failureReason` @return [String]

product_id[RW]

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]

user_id[RW]

The ID of the user. This field will always be present. Corresponds to the JSON property `userId` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/androidenterprise_v1/classes.rb, line 1186
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

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