顶点统计¶
属性¶
名称 |
类型 |
描述 |
备注 |
|---|---|---|---|
type_id |
int |
[可选] |
|
type_name |
str |
[可选] |
|
count |
int |
[可选] |
示例¶
from gs_interactive.models.vertex_statistics import VertexStatistics
# TODO update the JSON string below
json = "{}"
# create an instance of VertexStatistics from a JSON string
vertex_statistics_instance = VertexStatistics.from_json(json)
# print the JSON string representation of the object
print VertexStatistics.to_json()
# convert the object into a dict
vertex_statistics_dict = vertex_statistics_instance.to_dict()
# create an instance of VertexStatistics from a dict
vertex_statistics_form_dict = vertex_statistics.from_dict(vertex_statistics_dict)