Class: Google::Apis::IntegrationsV1::EnterpriseCrmEventbusProtoNodeIdentifier

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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_identifierString

Configuration of the edge. Corresponds to the JSON property elementIdentifier

Returns:

  • (String)


1781
1782
1783
# File 'lib/google/apis/integrations_v1/classes.rb', line 1781

def element_identifier
  @element_identifier
end

#element_typeString

Destination node where the edge ends. It can only be a task config. Corresponds to the JSON property elementType

Returns:

  • (String)


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