class Google::Apis::AndroidenterpriseV1::AppState

List of states set by the app.

Attributes

keyed_app_state[RW]

List of keyed app states. This field will always be present. Corresponds to the JSON property `keyedAppState` @return [Array<Google::Apis::AndroidenterpriseV1::KeyedAppState>]

package_name[RW]

The package name of the app. This field will always be present. Corresponds to the JSON property `packageName` @return [String]

Public Class Methods

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