# Permission

Enum representing permissions of user in the Book

### EDITOR

```ts
EDITOR: "EDITOR";
```

Manage accounts, transactions, book configuration and sharing

***

### NONE

```ts
NONE: "NONE";
```

No permission

***

### OWNER

```ts
OWNER: "OWNER";
```

Manage everything, including book visibility and deletion. Only one owner per book.

***

### POSTER

```ts
POSTER: "POSTER";
```

View transactions, accounts, record and delete drafts

***

### RECORDER

```ts
RECORDER: "RECORDER";
```

Record and delete drafts only. Useful to collect data only

***

### VIEWER

```ts
VIEWER: "VIEWER";
```

View transactions, accounts and balances.
