class Google::Apis::AndroidenterpriseV1::ManagedConfigurationsSettings
A managed configurations settings resource contains the set of managed properties that have been configured for an Android app to be applied to a set of users. The app's developer would have defined configurable properties in the managed configurations schema.
Attributes
last_updated_timestamp_millis[RW]
The last updated time of the managed configuration settings in milliseconds since 1970-01-01T00:00:00Z. Corresponds to the JSON property `lastUpdatedTimestampMillis` @return [Fixnum]
mcm_id[RW]
The ID of the managed configurations settings. Corresponds to the JSON property `mcmId` @return [String]
name[RW]
The name of the managed configurations settings. Corresponds to the JSON property `name` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/androidenterprise_v1/classes.rb, line 1428 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 1433 def update!(**args) @last_updated_timestamp_millis = args[:last_updated_timestamp_millis] if args.key?(:last_updated_timestamp_millis) @mcm_id = args[:mcm_id] if args.key?(:mcm_id) @name = args[:name] if args.key?(:name) end