# TransactionStatus

Enum that represents the status of a Transaction.

### CHECKED

```ts
CHECKED: "CHECKED";
```

Transaction is posted and checked

***

### DRAFT

```ts
DRAFT: "DRAFT";
```

Transaction is a draft, not yet posted

***

### TRASHED

```ts
TRASHED: "TRASHED";
```

Transaction is in the trash

***

### UNCHECKED

```ts
UNCHECKED: "UNCHECKED";
```

Transaction is posted but not checked
