边数据

属性

名称

类型

描述

备注

src_label

str

dst_label

str

edge_label

str

src_primary_key_value

object

dst_primary_key_value

object

属性

List[ModelProperty]

示例

from gs_interactive.models.edge_data import EdgeData

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

# convert the object into a dict
edge_data_dict = edge_data_instance.to_dict()
# create an instance of EdgeData from a dict
edge_data_form_dict = edge_data.from_dict(edge_data_dict)

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