This general object represents an entry represeting a relation between
external entities in an external database
An external Entity Relation is a relation of any type between two or
more external entities
It can contain several attributes.
|
|
__init__(self,
source_database,
relation_type,
id=None)
"source_databas_id" is the source database id where this
entity is described |
source code
|
|
|
|
|
|
|
|
|
|
| get_participant_attribute(self,
participantExternalEntityID,
attribute_identifier) |
source code
|
|
|
|
get_participant_attributes(self,
participantExternalEntityID)
Returns a list of [(attribute_name, fieldValues dictionary)] |
source code
|
|
|
|
get_participant_external_entity_ids_list(self)
Returns a list with all the externalEntityIds of the participants |
source code
|
|
|
|
get_relation_type(self)
Returns the type of this relation (interaction, reaction...) |
source code
|
|
|
Inherited from ExternalEntity'.ExternalEntity:
__eq__,
__str__,
add_attribute,
get_attribute,
get_attributes_dict,
get_id,
get_source_database,
get_type,
set_id
Inherited from object:
__delattr__,
__getattribute__,
__hash__,
__new__,
__reduce__,
__reduce_ex__,
__repr__,
__setattr__
|