GetVertexType¶
Properties¶
Name |
Type |
Description |
Notes |
---|---|---|---|
type_name |
str |
[optional] |
|
primary_keys |
List[str] |
[optional] |
|
x_csr_params |
[optional] |
||
type_id |
int |
[optional] |
|
properties |
[optional] |
||
description |
str |
[optional] |
Example¶
from gs_interactive.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 python_sdk]