Class: Google::Apis::IntegrationsV1alpha::EnterpriseCrmEventbusProtoNodeIdentifier
- Inherits:
-
Object
- Object
- Google::Apis::IntegrationsV1alpha::EnterpriseCrmEventbusProtoNodeIdentifier
- 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
Represents a node identifier (type + id). Next highest id: 3
Instance Attribute Summary collapse
-
#element_identifier ⇒ String
Configuration of the edge.
-
#element_type ⇒ String
Destination node where the edge ends.
Instance Method Summary collapse
-
#initialize(**args) ⇒ EnterpriseCrmEventbusProtoNodeIdentifier
constructor
A new instance of EnterpriseCrmEventbusProtoNodeIdentifier.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ EnterpriseCrmEventbusProtoNodeIdentifier
Returns a new instance of EnterpriseCrmEventbusProtoNodeIdentifier.
1743 1744 1745 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 1743 def initialize(**args) update!(**args) end |
Instance Attribute Details
#element_identifier ⇒ String
Configuration of the edge.
Corresponds to the JSON property elementIdentifier
1736 1737 1738 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 1736 def element_identifier @element_identifier end |
#element_type ⇒ String
Destination node where the edge ends. It can only be a task config.
Corresponds to the JSON property elementType
1741 1742 1743 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 1741 def element_type @element_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1748 1749 1750 1751 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 1748 def update!(**args) @element_identifier = args[:element_identifier] if args.key?(:element_identifier) @element_type = args[:element_type] if args.key?(:element_type) end |