顶点边请求¶
属性¶
名称 |
类型 |
描述 |
备注 |
|---|---|---|---|
vertex_request |
|||
edge_request |
示例¶
from gs_interactive.models.vertex_edge_request import VertexEdgeRequest
# TODO update the JSON string below
json = "{}"
# create an instance of VertexEdgeRequest from a JSON string
vertex_edge_request_instance = VertexEdgeRequest.from_json(json)
# print the JSON string representation of the object
print VertexEdgeRequest.to_json()
# convert the object into a dict
vertex_edge_request_dict = vertex_edge_request_instance.to_dict()
# create an instance of VertexEdgeRequest from a dict
vertex_edge_request_form_dict = vertex_edge_request.from_dict(vertex_edge_request_dict)