创建顶点类型¶
属性¶
名称 |
类型 |
描述 |
备注 |
|---|---|---|---|
type_name |
str |
[可选] |
|
primary_keys |
List[str] |
[可选] |
|
x_csr_params |
[可选] |
||
属性 |
[可选] |
示例¶
from gs_interactive.models.create_vertex_type import CreateVertexType
# TODO update the JSON string below
json = "{}"
# create an instance of CreateVertexType from a JSON string
create_vertex_type_instance = CreateVertexType.from_json(json)
# print the JSON string representation of the object
print CreateVertexType.to_json()
# convert the object into a dict
create_vertex_type_dict = create_vertex_type_instance.to_dict()
# create an instance of CreateVertexType from a dict
create_vertex_type_form_dict = create_vertex_type.from_dict(create_vertex_type_dict)