Class: Google::Apis::IntegrationsV1alpha::EnterpriseCrmEventbusProtoValueType

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

Overview

Used for define type for values. Currently supported value types include int, string, double, array, and any proto message.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ EnterpriseCrmEventbusProtoValueType

Returns a new instance of EnterpriseCrmEventbusProtoValueType.



3149
3150
3151
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 3149

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#boolean_valueBoolean Also known as: boolean_value?

Corresponds to the JSON property booleanValue

Returns:

  • (Boolean)


3111
3112
3113
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 3111

def boolean_value
  @boolean_value
end

#double_arrayGoogle::Apis::IntegrationsV1alpha::EnterpriseCrmEventbusProtoDoubleArray

Corresponds to the JSON property doubleArray



3117
3118
3119
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 3117

def double_array
  @double_array
end

#double_valueFloat

Corresponds to the JSON property doubleValue

Returns:

  • (Float)


3122
3123
3124
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 3122

def double_value
  @double_value
end

#int_arrayGoogle::Apis::IntegrationsV1alpha::EnterpriseCrmEventbusProtoIntArray

Corresponds to the JSON property intArray



3127
3128
3129
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 3127

def int_array
  @int_array
end

#int_valueFixnum

Corresponds to the JSON property intValue

Returns:

  • (Fixnum)


3132
3133
3134
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 3132

def int_value
  @int_value
end

#proto_valueHash<String,Object>

Corresponds to the JSON property protoValue

Returns:

  • (Hash<String,Object>)


3137
3138
3139
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 3137

def proto_value
  @proto_value
end

#string_arrayGoogle::Apis::IntegrationsV1alpha::EnterpriseCrmEventbusProtoStringArray

Corresponds to the JSON property stringArray



3142
3143
3144
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 3142

def string_array
  @string_array
end

#string_valueString

Corresponds to the JSON property stringValue

Returns:

  • (String)


3147
3148
3149
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 3147

def string_value
  @string_value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 3154

def update!(**args)
  @boolean_value = args[:boolean_value] if args.key?(:boolean_value)
  @double_array = args[:double_array] if args.key?(:double_array)
  @double_value = args[:double_value] if args.key?(:double_value)
  @int_array = args[:int_array] if args.key?(:int_array)
  @int_value = args[:int_value] if args.key?(:int_value)
  @proto_value = args[:proto_value] if args.key?(:proto_value)
  @string_array = args[:string_array] if args.key?(:string_array)
  @string_value = args[:string_value] if args.key?(:string_value)
end