# Status

This interface defines a Status that will be used in a ConanFlow

�

```typescript
export interface Status <
    STATUSES_FROM = any,
    KEY extends keyof STATUSES_FROM = any,
> {
    name: KEY,
    data?: STATUSES_FROM[KEY],
}
```

&#x20;

| Property | Description                                                                                                                        |
| -------- | ---------------------------------------------------------------------------------------------------------------------------------- |
| name     | <p><strong>Type:</strong>  <code>KEY </code><em><code>required</code></em></p><p>the name of the status</p>                        |
| data     | <p><strong>Type:</strong>  <code>STATUSES\_FROM\[KEY] </code><em><code>optional</code></em></p><p><code>The status data</code></p> |
