Class: Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsCellValue
- Inherits:
-
Object
- Object
- Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsCellValue
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/integrations_v1alpha/classes.rb,
lib/google/apis/integrations_v1alpha/representations.rb,
lib/google/apis/integrations_v1alpha/representations.rb
Instance Attribute Summary collapse
-
#boolean_value ⇒ Boolean
(also: #boolean_value?)
Corresponds to the JSON property
booleanValue. -
#double_value ⇒ Float
Corresponds to the JSON property
doubleValue. -
#empty ⇒ Google::Apis::IntegrationsV1alpha::GoogleProtobufEmpty
A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs.
-
#long_value ⇒ Fixnum
Corresponds to the JSON property
longValue. -
#string_value ⇒ String
Corresponds to the JSON property
stringValue.
Instance Method Summary collapse
-
#initialize(**args) ⇒ EnterpriseCrmCardsCellValue
constructor
A new instance of EnterpriseCrmCardsCellValue.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ EnterpriseCrmCardsCellValue
Returns a new instance of EnterpriseCrmCardsCellValue.
78 79 80 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 78 def initialize(**args) update!(**args) end |
Instance Attribute Details
#boolean_value ⇒ Boolean Also known as: boolean_value?
Corresponds to the JSON property booleanValue
52 53 54 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 52 def boolean_value @boolean_value end |
#double_value ⇒ Float
Corresponds to the JSON property doubleValue
58 59 60 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 58 def double_value @double_value end |
#empty ⇒ Google::Apis::IntegrationsV1alpha::GoogleProtobufEmpty
A generic empty message that you can re-use to avoid defining duplicated empty
messages in your APIs. A typical example is to use it as the request or the
response type of an API method. For instance: service Foo rpc Bar(google.
protobuf.Empty) returns (google.protobuf.Empty);
Corresponds to the JSON property empty
66 67 68 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 66 def empty @empty end |
#long_value ⇒ Fixnum
Corresponds to the JSON property longValue
71 72 73 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 71 def long_value @long_value end |
#string_value ⇒ String
Corresponds to the JSON property stringValue
76 77 78 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 76 def string_value @string_value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
83 84 85 86 87 88 89 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 83 def update!(**args) @boolean_value = args[:boolean_value] if args.key?(:boolean_value) @double_value = args[:double_value] if args.key?(:double_value) @empty = args[:empty] if args.key?(:empty) @long_value = args[:long_value] if args.key?(:long_value) @string_value = args[:string_value] if args.key?(:string_value) end |