/** Contains attributes of the Flow that is being executed. */ export interface FlowAttributes { /** The ID of the currently running flow. */ id: string; /** The name of the currently running flow. */ name: string; }