BaseEdgeType

Properties

Name

Type

Description

Notes

type_name

str

[optional]

vertex_type_pair_relations

List[BaseEdgeTypeVertexTypePairRelationsInner]

[optional]

Example

from interactive_sdk.openapi.models.base_edge_type import BaseEdgeType

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

# convert the object into a dict
base_edge_type_dict = base_edge_type_instance.to_dict()
# create an instance of BaseEdgeType from a dict
base_edge_type_from_dict = BaseEdgeType.from_dict(base_edge_type_dict)

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