CreateGraphRequest

Properties

Name

Type

Description

Notes

name

str

[optional]

description

str

[optional]

stored_procedures

List[CreateProcedureRequest]

[optional]

var_schema

CreateGraphSchemaRequest

[optional]

Example

from interactive_sdk.openapi.models.create_graph_request import CreateGraphRequest

# TODO update the JSON string below
json = "{}"
# create an instance of CreateGraphRequest from a JSON string
create_graph_request_instance = CreateGraphRequest.from_json(json)
# print the JSON string representation of the object
print(CreateGraphRequest.to_json())

# convert the object into a dict
create_graph_request_dict = create_graph_request_instance.to_dict()
# create an instance of CreateGraphRequest from a dict
create_graph_request_from_dict = CreateGraphRequest.from_dict(create_graph_request_dict)

[Back to Model list] [Back to API list] [Back to README]