CreateGraphSchemaRequest¶
Properties¶
Name |
Type |
Description |
Notes |
---|---|---|---|
vertex_types |
[optional] |
||
edge_types |
[optional] |
Example¶
from gs_interactive.models.create_graph_schema_request import CreateGraphSchemaRequest
# TODO update the JSON string below
json = "{}"
# create an instance of CreateGraphSchemaRequest from a JSON string
create_graph_schema_request_instance = CreateGraphSchemaRequest.from_json(json)
# print the JSON string representation of the object
print(CreateGraphSchemaRequest.to_json())
# convert the object into a dict
create_graph_schema_request_dict = create_graph_schema_request_instance.to_dict()
# create an instance of CreateGraphSchemaRequest from a dict
create_graph_schema_request_from_dict = CreateGraphSchemaRequest.from_dict(create_graph_schema_request_dict)
[Back to Model list] [Back to API list] [Back to python_sdk]