import { BaseElement } from './BaseElement'; /** * Contains a BPMN DataInputAssociation. * These associations signify that a FlowNode requires data from a DataObject or DataStore. */ export type DataInputAssociation = BaseElement & { /** * The given name of the DataInputAssociation. */ name?: string; /** * The ID of the DataObject or DataStore from which to gather data. */ sourceRef: string; /** * The ID of the FlowNode that requires data from the DataObject or DataStore. */ targetRef: string; };