GetGraphResponse

Properties

Name

Type

Description

Notes

id

str

[optional]

name

str

[optional]

description

str

[optional]

store_type

str

[optional]

creation_time

int

[optional]

data_update_time

int

[optional]

stored_procedures

List[GetProcedureResponse]

[optional]

var_schema

GetGraphSchemaResponse

[optional]

data_import_config

SchemaMapping

[optional]

Example

from interactive_sdk.openapi.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_from_dict = GetGraphResponse.from_dict(get_graph_response_dict)

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