Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 885 Bytes

File metadata and controls

30 lines (21 loc) · 885 Bytes

Node

If the RDF refers to a class instance instead of a string literal, this instance can have arbitrary attributes, but it must have at least an @id.

Properties

Name Type Description Notes
id str

Example

from pyst_client.models.node import Node

# TODO update the JSON string below
json = "{}"
# create an instance of Node from a JSON string
node_instance = Node.from_json(json)
# print the JSON string representation of the object
print(Node.to_json())

# convert the object into a dict
node_dict = node_instance.to_dict()
# create an instance of Node from a dict
node_from_dict = Node.from_dict(node_dict)

[Back to Model list] [Back to API list] [Back to README]