边映射

属性

名称

类型

描述

备注

type_triplet

EdgeMappingTypeTriplet

[可选]

inputs

List[str]

[可选]

source_vertex_mappings

List[EdgeMappingSourceVertexMappingsInner]

[可选]

destination_vertex_mappings

List[EdgeMappingDestinationVertexMappingsInner]

[可选]

column_mappings

List[ColumnMapping]

[可选]

示例

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)

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