顶点数据

属性

名称

类型

描述

备注

标签

字符串

values

List[ModelProperty]

[可选]

示例

from gs_interactive.models.vertex_data import VertexData

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

# convert the object into a dict
vertex_data_dict = vertex_data_instance.to_dict()
# create an instance of VertexData from a dict
vertex_data_form_dict = vertex_data.from_dict(vertex_data_dict)

[返回模型列表] [返回API列表] [返回python_sdk]