GetGraphSchemaResponse¶
Properties¶
Name |
Type |
Description |
Notes |
---|---|---|---|
vertex_types |
[optional] |
||
edge_types |
[optional] |
Example¶
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_from_dict = GetGraphSchemaResponse.from_dict(get_graph_schema_response_dict)
[Back to Model list] [Back to API list] [Back to python_sdk]