GetGraphResponse¶
属性¶
名称 |
类型 |
描述 |
备注 |
|---|---|---|---|
版本 |
字符串 |
[可选] |
|
id |
str |
[可选] |
|
名称 |
字符串 |
[可选] |
|
描述 |
字符串 |
[可选] |
|
store_type |
str |
[可选] |
|
creation_time |
int |
[可选] |
|
data_update_time |
int |
[可选] |
|
stored_procedures |
[可选] |
||
var_schema |
[可选] |
||
data_import_config |
[可选] |
示例¶
from gs_interactive.models.get_graph_response import GetGraphResponse
# TODO update the JSON string below
json = "{}"
# create an instance of GetGraphResponse from a JSON string
get_graph_response_instance = GetGraphResponse.from_json(json)
# print the JSON string representation of the object
print GetGraphResponse.to_json()
# convert the object into a dict
get_graph_response_dict = get_graph_response_instance.to_dict()
# create an instance of GetGraphResponse from a dict
get_graph_response_form_dict = get_graph_response.from_dict(get_graph_response_dict)