边映射¶
属性¶
名称 |
类型 |
描述 |
备注 |
|---|---|---|---|
type_triplet |
[可选] |
||
inputs |
List[str] |
[可选] |
|
source_vertex_mappings |
[可选] |
||
destination_vertex_mappings |
[可选] |
||
column_mappings |
[可选] |
示例¶
from gs_interactive.models.edge_mapping import EdgeMapping
# TODO update the JSON string below
json = "{}"
# create an instance of EdgeMapping from a JSON string
edge_mapping_instance = EdgeMapping.from_json(json)
# print the JSON string representation of the object
print EdgeMapping.to_json()
# convert the object into a dict
edge_mapping_dict = edge_mapping_instance.to_dict()
# create an instance of EdgeMapping from a dict
edge_mapping_form_dict = edge_mapping.from_dict(edge_mapping_dict)