边统计¶
属性¶
名称 |
类型 |
描述 |
备注 |
|---|---|---|---|
type_id |
int |
[可选] |
|
type_name |
str |
[可选] |
|
vertex_type_pair_statistics |
[可选] |
示例¶
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_form_dict = edge_statistics.from_dict(edge_statistics_dict)