# UnitType

Unit semantics for an account-invoice line item.

* `money` - `unitAmount` is a monetary value in minor units; line total = `quantity * unitAmount`.
* `percent` - `unitAmount` is a percentage; line total = `quantity * unitAmount / 100`.

```
enum UnitType {

  money

  percent

}
```

### Values[​](#values "Direct link to Values")

#### [`UnitType.money`](#money)[​](#money "Direct link to money")

#### [`UnitType.percent`](#percent)[​](#percent "Direct link to percent")

### Member Of[​](#member-of "Direct link to Member Of")

[`AccountInvoiceLineItem`](https://docs.monei.com/apis/graphql/types/objects/account-invoice-line-item/.md) object
