Class: Google::Apis::AndroidenterpriseV1::DeviceReportUpdateEvent
- Inherits:
-
Object
- Object
- Google::Apis::AndroidenterpriseV1::DeviceReportUpdateEvent
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/androidenterprise_v1/classes.rb,
lib/google/apis/androidenterprise_v1/representations.rb,
lib/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.
824 825 826 |
# File 'lib/google/apis/androidenterprise_v1/classes.rb', line 824 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
811 812 813 |
# File 'lib/google/apis/androidenterprise_v1/classes.rb', line 811 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
817 818 819 |
# File 'lib/google/apis/androidenterprise_v1/classes.rb', line 817 def report @report end |
#user_id ⇒ String
The ID of the user. This field will always be present.
Corresponds to the JSON property userId
822 823 824 |
# File 'lib/google/apis/androidenterprise_v1/classes.rb', line 822 def user_id @user_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
829 830 831 832 833 |
# File 'lib/google/apis/androidenterprise_v1/classes.rb', line 829 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 |