Class: Google::Apis::CloudidentityV1beta1::GoogleAppsCloudidentityDevicesV1CustomAttributeValue
- Inherits:
-
Object
- Object
- Google::Apis::CloudidentityV1beta1::GoogleAppsCloudidentityDevicesV1CustomAttributeValue
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- generated/google/apis/cloudidentity_v1beta1/classes.rb,
generated/google/apis/cloudidentity_v1beta1/representations.rb,
generated/google/apis/cloudidentity_v1beta1/representations.rb
Overview
Additional custom attribute values may be one of these types
Instance Attribute Summary collapse
-
#bool_value ⇒ Boolean
(also: #bool_value?)
Represents a boolean value.
-
#number_value ⇒ Float
Represents a double value.
-
#string_value ⇒ String
Represents a string value.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleAppsCloudidentityDevicesV1CustomAttributeValue
constructor
A new instance of GoogleAppsCloudidentityDevicesV1CustomAttributeValue.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleAppsCloudidentityDevicesV1CustomAttributeValue
Returns a new instance of GoogleAppsCloudidentityDevicesV1CustomAttributeValue.
1105 1106 1107 |
# File 'generated/google/apis/cloudidentity_v1beta1/classes.rb', line 1105 def initialize(**args) update!(**args) end |
Instance Attribute Details
#bool_value ⇒ Boolean Also known as: bool_value?
Represents a boolean value.
Corresponds to the JSON property boolValue
1092 1093 1094 |
# File 'generated/google/apis/cloudidentity_v1beta1/classes.rb', line 1092 def bool_value @bool_value end |
#number_value ⇒ Float
Represents a double value.
Corresponds to the JSON property numberValue
1098 1099 1100 |
# File 'generated/google/apis/cloudidentity_v1beta1/classes.rb', line 1098 def number_value @number_value end |
#string_value ⇒ String
Represents a string value.
Corresponds to the JSON property stringValue
1103 1104 1105 |
# File 'generated/google/apis/cloudidentity_v1beta1/classes.rb', line 1103 def string_value @string_value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1110 1111 1112 1113 1114 |
# File 'generated/google/apis/cloudidentity_v1beta1/classes.rb', line 1110 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 |