GetGraphStatisticsResponse¶
属性¶
名称 |
类型 |
描述 |
备注 |
|---|---|---|---|
total_vertex_count |
int |
||
total_edge_count |
int |
||
vertex_type_statistics |
[可选] |
||
edge_type_statistics |
[可选] |
示例¶
from gs_interactive.models.get_graph_statistics_response import GetGraphStatisticsResponse
# TODO update the JSON string below
json = "{}"
# create an instance of GetGraphStatisticsResponse from a JSON string
get_graph_statistics_response_instance = GetGraphStatisticsResponse.from_json(json)
# print the JSON string representation of the object
print GetGraphStatisticsResponse.to_json()
# convert the object into a dict
get_graph_statistics_response_dict = get_graph_statistics_response_instance.to_dict()
# create an instance of GetGraphStatisticsResponse from a dict
get_graph_statistics_response_form_dict = get_graph_statistics_response.from_dict(get_graph_statistics_response_dict)