顶点请求¶
属性¶
名称 |
类型 |
描述 |
备注 |
|---|---|---|---|
标签 |
字符串 |
||
primary_key_value |
object |
||
属性 |
示例¶
from gs_interactive.models.vertex_request import VertexRequest
# TODO update the JSON string below
json = "{}"
# create an instance of VertexRequest from a JSON string
vertex_request_instance = VertexRequest.from_json(json)
# print the JSON string representation of the object
print VertexRequest.to_json()
# convert the object into a dict
vertex_request_dict = vertex_request_instance.to_dict()
# create an instance of VertexRequest from a dict
vertex_request_form_dict = vertex_request.from_dict(vertex_request_dict)