# MetaInfo

This interface models the meta information associated with a meta flow:

```typescript
export interface MetaInfo {
    transactionCount: number,
    status?: MetaStatus,
    lastError: any
}
```

�

| Property         | Description                                                                                                     |
| ---------------- | --------------------------------------------------------------------------------------------------------------- |
| transactionCount | <p><strong>Type:</strong>  <code>number</code></p><p>transaction count executed in the meta flow</p>            |
| status           | <p><strong>Type:</strong>  <code>MetaStatus</code></p><p><code>The current status of the meta flow</code></p>   |
| lastError        | <p><strong>Type:</strong>  <code>any</code> </p><p><code>last error that was thrown to the meta flow</code></p> |

The possible values for MetaStatus are:

```typescript
export enum MetaStatus {
    STARTING = 'STARTING',
    INIT = "INIT",
    RUNNING = "RUNNING",
    ERROR = "ERROR",
    IDLE = "IDLE",
    IDLE_ON_TRANSACTION = "IDLE_ON_TRANSACTION",
}
```

�
