Class: Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsCellValue

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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_valueBoolean Also known as: boolean_value?

Corresponds to the JSON property booleanValue

Returns:

  • (Boolean)


52
53
54
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 52

def boolean_value
  @boolean_value
end

#double_valueFloat

Corresponds to the JSON property doubleValue

Returns:

  • (Float)


58
59
60
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 58

def double_value
  @double_value
end

#emptyGoogle::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_valueFixnum

Corresponds to the JSON property longValue

Returns:

  • (Fixnum)


71
72
73
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 71

def long_value
  @long_value
end

#string_valueString

Corresponds to the JSON property stringValue

Returns:

  • (String)


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