EdgeStatistics¶
Properties¶
Name |
Type |
Description |
Notes |
---|---|---|---|
type_id |
int |
[optional] |
|
type_name |
str |
[optional] |
|
vertex_type_pair_statistics |
[optional] |
Example¶
from gs_interactive.models.edge_statistics import EdgeStatistics
# TODO update the JSON string below
json = "{}"
# create an instance of EdgeStatistics from a JSON string
edge_statistics_instance = EdgeStatistics.from_json(json)
# print the JSON string representation of the object
print(EdgeStatistics.to_json())
# convert the object into a dict
edge_statistics_dict = edge_statistics_instance.to_dict()
# create an instance of EdgeStatistics from a dict
edge_statistics_from_dict = EdgeStatistics.from_dict(edge_statistics_dict)
[Back to Model list] [Back to API list] [Back to python_sdk]