class Google::Apis::AndroidenterpriseV1::DeviceReport

Device report updated with the latest app states for managed apps on the device.

Attributes

app_state[RW]

List of app states set by managed apps on the device. App states are defined by the app's developers. This field will always be present. Corresponds to the JSON property `appState` @return [Array<Google::Apis::AndroidenterpriseV1::AppState>]

last_updated_timestamp_millis[RW]

The timestamp of the last report update in milliseconds since epoch. This field will always be present. Corresponds to the JSON property `lastUpdatedTimestampMillis` @return [Fixnum]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/androidenterprise_v1/classes.rb, line 723
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 728
def update!(**args)
  @app_state = args[:app_state] if args.key?(:app_state)
  @last_updated_timestamp_millis = args[:last_updated_timestamp_millis] if args.key?(:last_updated_timestamp_millis)
end