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