顶点映射¶
属性¶
名称 |
类型 |
描述 |
备注 |
|---|---|---|---|
type_name |
str |
[可选] |
|
inputs |
List[str] |
[可选] |
|
column_mappings |
[可选] |
示例¶
from gs_interactive.models.vertex_mapping import VertexMapping
# TODO update the JSON string below
json = "{}"
# create an instance of VertexMapping from a JSON string
vertex_mapping_instance = VertexMapping.from_json(json)
# print the JSON string representation of the object
print VertexMapping.to_json()
# convert the object into a dict
vertex_mapping_dict = vertex_mapping_instance.to_dict()
# create an instance of VertexMapping from a dict
vertex_mapping_form_dict = vertex_mapping.from_dict(vertex_mapping_dict)