Class: Google::Apis::AndroidenterpriseV1::DeviceReportUpdateEvent
- Inherits:
-
Object
- Object
- Google::Apis::AndroidenterpriseV1::DeviceReportUpdateEvent
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/androidenterprise_v1/classes.rb,
generated/google/apis/androidenterprise_v1/representations.rb,
generated/google/apis/androidenterprise_v1/representations.rb
Overview
An event generated when an updated device report is available.
Instance Attribute Summary collapse
-
#device_id ⇒ String
The Android ID of the device.
-
#report ⇒ Google::Apis::AndroidenterpriseV1::DeviceReport
Device report updated with the latest app states for managed apps on the device.
-
#user_id ⇒ String
The ID of the user.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DeviceReportUpdateEvent
constructor
A new instance of DeviceReportUpdateEvent.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DeviceReportUpdateEvent
Returns a new instance of DeviceReportUpdateEvent.
727 728 729 |
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 727 def initialize(**args) update!(**args) end |
Instance Attribute Details
#device_id ⇒ String
The Android ID of the device. This field will always be present.
Corresponds to the JSON property deviceId
714 715 716 |
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 714 def device_id @device_id end |
#report ⇒ Google::Apis::AndroidenterpriseV1::DeviceReport
Device report updated with the latest app states for managed apps on the
device.
Corresponds to the JSON property report
720 721 722 |
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 720 def report @report end |
#user_id ⇒ String
The ID of the user. This field will always be present.
Corresponds to the JSON property userId
725 726 727 |
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 725 def user_id @user_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
732 733 734 735 736 |
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 732 def update!(**args) @device_id = args[:device_id] if args.key?(:device_id) @report = args[:report] if args.key?(:report) @user_id = args[:user_id] if args.key?(:user_id) end |