Class: Google::Apis::IntegrationsV1::EnterpriseCrmEventbusProtoNodeIdentifier
- Inherits:
-
Object
- Object
- Google::Apis::IntegrationsV1::EnterpriseCrmEventbusProtoNodeIdentifier
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/integrations_v1/classes.rb,
lib/google/apis/integrations_v1/representations.rb,
lib/google/apis/integrations_v1/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.
1788 1789 1790 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 1788 def initialize(**args) update!(**args) end |
Instance Attribute Details
#element_identifier ⇒ String
Configuration of the edge.
Corresponds to the JSON property elementIdentifier
1781 1782 1783 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 1781 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
1786 1787 1788 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 1786 def element_type @element_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1793 1794 1795 1796 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 1793 def update!(**args) @element_identifier = args[:element_identifier] if args.key?(:element_identifier) @element_type = args[:element_type] if args.key?(:element_type) end |