class Google::Apis::CloudidentityV1beta1::GoogleAppsCloudidentityDevicesV1CustomAttributeValue
Additional custom attribute values may be one of these types
Attributes
bool_value[RW]
Represents a boolean value. Corresponds to the JSON property `boolValue` @return [Boolean]
bool_value?[RW]
Represents a boolean value. Corresponds to the JSON property `boolValue` @return [Boolean]
number_value[RW]
Represents a double value. Corresponds to the JSON property `numberValue` @return [Float]
string_value[RW]
Represents a string value. Corresponds to the JSON property `stringValue` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/cloudidentity_v1beta1/classes.rb, line 1132 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/cloudidentity_v1beta1/classes.rb, line 1137 def update!(**args) @bool_value = args[:bool_value] if args.key?(:bool_value) @number_value = args[:number_value] if args.key?(:number_value) @string_value = args[:string_value] if args.key?(:string_value) end