Interface IntegrationElementInstanceDependency

interface IntegrationElementInstanceDependency {
    fromType: IntegrationElementType;
    fromInstanceId: string;
    toType: IntegrationElementType;
    toInstanceId: string;
    data?: any;
}

Properties

fromInstanceId: string
toInstanceId: string
data?: any