CreateGraphResponse¶
Properties¶
Name |
Type |
Description |
Notes |
---|---|---|---|
graph_id |
str |
Example¶
from graphscope.flex.rest.models.create_graph_response import CreateGraphResponse
# TODO update the JSON string below
json = "{}"
# create an instance of CreateGraphResponse from a JSON string
create_graph_response_instance = CreateGraphResponse.from_json(json)
# print the JSON string representation of the object
print(CreateGraphResponse.to_json())
# convert the object into a dict
create_graph_response_dict = create_graph_response_instance.to_dict()
# create an instance of CreateGraphResponse from a dict
create_graph_response_from_dict = CreateGraphResponse.from_dict(create_graph_response_dict)