获取图模式响应¶
属性¶
名称 |
类型 |
描述 |
备注 |
|---|---|---|---|
vertex_types |
[可选] |
||
edge_types |
[可选] |
示例¶
from gs_interactive.models.get_graph_schema_response import GetGraphSchemaResponse
# TODO update the JSON string below
json = "{}"
# create an instance of GetGraphSchemaResponse from a JSON string
get_graph_schema_response_instance = GetGraphSchemaResponse.from_json(json)
# print the JSON string representation of the object
print GetGraphSchemaResponse.to_json()
# convert the object into a dict
get_graph_schema_response_dict = get_graph_schema_response_instance.to_dict()
# create an instance of GetGraphSchemaResponse from a dict
get_graph_schema_response_form_dict = get_graph_schema_response.from_dict(get_graph_schema_response_dict)