class Google::Apis::AndroidmanagementV1::ManagedPropertyEntry
An entry of a managed property.
Attributes
name[RW]
The human-readable name of the value. Localized. Corresponds to the JSON property `name` @return [String]
value[RW]
The machine-readable value of the entry, which should be used in the configuration. Not localized. Corresponds to the JSON property `value` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/androidmanagement_v1/classes.rb, line 2049 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/androidmanagement_v1/classes.rb, line 2054 def update!(**args) @name = args[:name] if args.key?(:name) @value = args[:value] if args.key?(:value) end