Package version:

Interface MapperTargetConnectionsInfo

A object which contains list of tables and connection details for a target connection.

interface MapperTargetConnectionsInfo {
    connection?: MapperConnection;
    dataMapperMappings?: DataMapperMapping[];
    relationships?: any[];
    targetEntities?: MapperTable[];
}

Properties

connection?: MapperConnection

Source connection details.

dataMapperMappings?: DataMapperMapping[]

List of table mappings.

relationships?: any[]

List of relationship info among the tables.

targetEntities?: MapperTable[]

List of source tables for a target connection.