EdgeRequest

属性

名称

类型

描述

备注

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_request import EdgeRequest

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

# convert the object into a dict
edge_request_dict = edge_request_instance.to_dict()
# create an instance of EdgeRequest from a dict
edge_request_form_dict = edge_request.from_dict(edge_request_dict)

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