GetVertexType

Properties

Name

Type

Description

Notes

type_name

str

[optional]

primary_keys

List[str]

[optional]

x_csr_params

BaseVertexTypeXCsrParams

[optional]

type_id

int

[optional]

properties

List[GetPropertyMeta]

[optional]

description

str

[optional]

Example

from interactive_sdk.openapi.models.get_vertex_type import GetVertexType

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

# convert the object into a dict
get_vertex_type_dict = get_vertex_type_instance.to_dict()
# create an instance of GetVertexType from a dict
get_vertex_type_from_dict = GetVertexType.from_dict(get_vertex_type_dict)

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