获取图模式响应

属性

名称

类型

描述

备注

vertex_types

List[GetVertexType]

[可选]

edge_types

List[GetEdgeType]

[可选]

示例

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)

[返回模型列表] [返回API列表] [返回python_sdk]