class Google::Apis::ChromepolicyV1::GoogleChromePolicyV1PolicySchemaFieldKnownValueDescription
Provides detailed information about a known value that is allowed for a particular field in a PolicySchema.
Attributes
description[RW]
Output only. Additional description for this value. Corresponds to the JSON property `description` @return [String]
value[RW]
Output only. The string represenstation of the value that can be set for the field. Corresponds to the JSON property `value` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/chromepolicy_v1/classes.rb, line 356 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/chromepolicy_v1/classes.rb, line 361 def update!(**args) @description = args[:description] if args.key?(:description) @value = args[:value] if args.key?(:value) end