Class: Google::Apis::IntegrationsV1alpha::EnterpriseCrmFrontendsEventbusProtoParameterEntry
- Inherits:
-
Object
- Object
- Google::Apis::IntegrationsV1alpha::EnterpriseCrmFrontendsEventbusProtoParameterEntry
- 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
Key-value pair of EventBus parameters.
Instance Attribute Summary collapse
-
#data_type ⇒ String
Explicitly getting the type of the parameter.
-
#key ⇒ String
Key is used to retrieve the corresponding parameter value.
-
#value ⇒ Google::Apis::IntegrationsV1alpha::EnterpriseCrmFrontendsEventbusProtoParameterValueType
To support various types of parameter values.
Instance Method Summary collapse
-
#initialize(**args) ⇒ EnterpriseCrmFrontendsEventbusProtoParameterEntry
constructor
A new instance of EnterpriseCrmFrontendsEventbusProtoParameterEntry.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ EnterpriseCrmFrontendsEventbusProtoParameterEntry
Returns a new instance of EnterpriseCrmFrontendsEventbusProtoParameterEntry.
3906 3907 3908 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 3906 def initialize(**args) update!(**args) end |
Instance Attribute Details
#data_type ⇒ String
Explicitly getting the type of the parameter.
Corresponds to the JSON property dataType
3892 3893 3894 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 3892 def data_type @data_type end |
#key ⇒ String
Key is used to retrieve the corresponding parameter value. This should be
unique for a given fired event. These parameters must be predefined in the
workflow definition.
Corresponds to the JSON property key
3899 3900 3901 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 3899 def key @key end |
#value ⇒ Google::Apis::IntegrationsV1alpha::EnterpriseCrmFrontendsEventbusProtoParameterValueType
To support various types of parameter values. Next available id: 14
Corresponds to the JSON property value
3904 3905 3906 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 3904 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3911 3912 3913 3914 3915 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 3911 def update!(**args) @data_type = args[:data_type] if args.key?(:data_type) @key = args[:key] if args.key?(:key) @value = args[:value] if args.key?(:value) end |