Appearance
PageKnowledgeGraph
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| items | List[KnowledgeGraph] | ||
| total | int | ||
| page | int | ||
| size | int | ||
| pages | int | [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)