Class: Google::Apis::IntegrationsV1alpha::EnterpriseCrmEventbusProtoParameterValueType

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

LINT.IfChange To support various types of parameter values. Next available id: 14

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ EnterpriseCrmEventbusProtoParameterValueType

Returns a new instance of EnterpriseCrmEventbusProtoParameterValueType.



2040
2041
2042
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 2040

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

Instance Attribute Details

#boolean_arrayGoogle::Apis::IntegrationsV1alpha::EnterpriseCrmEventbusProtoBooleanParameterArray

Corresponds to the JSON property booleanArray



1987
1988
1989
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 1987

def boolean_array
  @boolean_array
end

#boolean_valueBoolean Also known as: boolean_value?

Corresponds to the JSON property booleanValue

Returns:

  • (Boolean)


1992
1993
1994
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 1992

def boolean_value
  @boolean_value
end

#double_arrayGoogle::Apis::IntegrationsV1alpha::EnterpriseCrmEventbusProtoDoubleParameterArray

Corresponds to the JSON property doubleArray



1998
1999
2000
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 1998

def double_array
  @double_array
end

#double_valueFloat

Corresponds to the JSON property doubleValue

Returns:

  • (Float)


2003
2004
2005
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 2003

def double_value
  @double_value
end

#int_arrayGoogle::Apis::IntegrationsV1alpha::EnterpriseCrmEventbusProtoIntParameterArray

Corresponds to the JSON property intArray



2008
2009
2010
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 2008

def int_array
  @int_array
end

#int_valueFixnum

Corresponds to the JSON property intValue

Returns:

  • (Fixnum)


2013
2014
2015
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 2013

def int_value
  @int_value
end

#proto_arrayGoogle::Apis::IntegrationsV1alpha::EnterpriseCrmEventbusProtoProtoParameterArray

Corresponds to the JSON property protoArray



2018
2019
2020
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 2018

def proto_array
  @proto_array
end

#proto_valueHash<String,Object>

Corresponds to the JSON property protoValue

Returns:

  • (Hash<String,Object>)


2023
2024
2025
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 2023

def proto_value
  @proto_value
end

#serialized_object_valueGoogle::Apis::IntegrationsV1alpha::EnterpriseCrmEventbusProtoSerializedObjectParameter

Corresponds to the JSON property serializedObjectValue



2028
2029
2030
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 2028

def serialized_object_value
  @serialized_object_value
end

#string_arrayGoogle::Apis::IntegrationsV1alpha::EnterpriseCrmEventbusProtoStringParameterArray

Corresponds to the JSON property stringArray



2033
2034
2035
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 2033

def string_array
  @string_array
end

#string_valueString

Corresponds to the JSON property stringValue

Returns:

  • (String)


2038
2039
2040
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 2038

def string_value
  @string_value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 2045

def update!(**args)
  @boolean_array = args[:boolean_array] if args.key?(:boolean_array)
  @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_array = args[:proto_array] if args.key?(:proto_array)
  @proto_value = args[:proto_value] if args.key?(:proto_value)
  @serialized_object_value = args[:serialized_object_value] if args.key?(:serialized_object_value)
  @string_array = args[:string_array] if args.key?(:string_array)
  @string_value = args[:string_value] if args.key?(:string_value)
end