Skip to content

PageKnowledgeGraph

Properties

NameTypeDescriptionNotes
itemsList[KnowledgeGraph]
totalint
pageint
sizeint
pagesint[optional]

Example

python
from syntheticusers.models.page_knowledge_graph import PageKnowledgeGraph

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

# convert the object into a dict
page_knowledge_graph_dict = page_knowledge_graph_instance.to_dict()
# create an instance of PageKnowledgeGraph from a dict
page_knowledge_graph_from_dict = PageKnowledgeGraph.from_dict(page_knowledge_graph_dict)

[Back to API list] [Back to SDK]

Released under the MIT License.