StoredProcedureMeta¶
Properties¶
Name |
Type |
Description |
Notes |
---|---|---|---|
name |
str |
||
description |
str |
[optional] |
|
type |
str |
||
query |
str |
||
id |
str |
||
library |
str |
||
params |
|||
returns |
|||
option |
Dict[str, object] |
[optional] |
Example¶
from graphscope.flex.rest.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_from_dict = StoredProcedureMeta.from_dict(stored_procedure_meta_dict)