import { BaseElement } from './BaseElement'; /** * Contains a BPMN DataOutputAssociation. * These associations signify that a FlowNode writes data into a DataObject or DataStore. */ export type DataOutputAssociation = BaseElement & { /** * The given name of the DataOutputAssociation. */ name?: string; /** * The ID of the FlowNode that writes data into the DataObject or DataStore. */ sourceRef: string; /** * The ID of the DataObject or DataStore that the FlowNode writes to. */ targetRef: string; /** * Contains an expression that describes the data to write to the DataObject/DataStore referenced in targetRef. */ dataSource: string; };