Node constructor

__init__(self)

Initializes a new instance of the Node class.


def __init__(self):
    ...

__init__(self, name)

Initializes a new instance of the Node class.


def __init__(self, name):
    ...
ParameterTypeDescription
namestrName.

__init__(self, name, entity)

Initializes a new instance of the Node class.


def __init__(self, name, entity):
    ...
ParameterTypeDescription
namestrName.
entityEntityDefault entity.

See Also