GetProcedureResponse¶
属性¶
名称 |
类型 |
描述 |
备注 |
|---|---|---|---|
名称 |
字符串 |
||
描述 |
字符串 |
[可选] |
|
类型 |
字符串 |
||
查询 |
字符串 |
||
id |
str |
[可选] |
|
库 |
字符串 |
[可选] |
|
params |
[可选] |
||
返回值 |
[可选] |
||
enable |
bool |
[可选] |
|
option |
Dict[str, object] |
[可选] |
|
bound_graph |
str |
[可选] |
|
runnable |
bool |
[可选] |
|
creation_time |
int |
[可选] |
|
update_time |
int |
[可选] |
示例¶
from gs_interactive.models.get_procedure_response import GetProcedureResponse
# TODO update the JSON string below
json = "{}"
# create an instance of GetProcedureResponse from a JSON string
get_procedure_response_instance = GetProcedureResponse.from_json(json)
# print the JSON string representation of the object
print GetProcedureResponse.to_json()
# convert the object into a dict
get_procedure_response_dict = get_procedure_response_instance.to_dict()
# create an instance of GetProcedureResponse from a dict
get_procedure_response_form_dict = get_procedure_response.from_dict(get_procedure_response_dict)