EdgeMapping

Properties

Name

Type

Description

Notes

type_triplet

EdgeMappingTypeTriplet

[optional]

inputs

List[str]

[optional]

source_vertex_mappings

List[EdgeMappingSourceVertexMappingsInner]

[optional]

destination_vertex_mappings

List[EdgeMappingDestinationVertexMappingsInner]

[optional]

column_mappings

List[ColumnMapping]

[optional]

Example

from interactive_sdk.openapi.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_from_dict = EdgeMapping.from_dict(edge_mapping_dict)

[Back to Model list] [Back to API list] [Back to README]