> For the complete documentation index, see [llms.txt](https://docs.payrexx.com/developer/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.payrexx.com/developer/general-info/objects/transfer/item.md).

# Item

### Content

<table><thead><tr><th width="231.6796875">Key</th><th width="154.80078125">Type</th><th>Description</th></tr></thead><tbody><tr><td>type</td><td>string</td><td>The type of the transfer item</td></tr><tr><td>amount</td><td>int</td><td>The amount of the transfer item</td></tr></tbody></table>

### Type values

* transaction
* transaction-reversal
* transaction-fee
* transaction-fee-reversal
* application-fee
* application-fee-reversal
* transaction-currency-conversion-fee
* transaction-currency-conversion-fee-reversal
* dispute
* dispute-reversal
* dispute-fee
* dispute-fee-reversal
* dispute-currency-conversion-fee
* dispute-currency-conversion-fee-reversal
* payout
* payout-reversal
* adjustment
* manual-adjustment
* payout-fee
* payout-reserve
* payout-reserve-reversal

### Example

```json
{
  "type": "payout-fee",
  "amount": -10
}
```

```json
{
  "type": "transaction",
  "amount": 30000
}
```

```json
{
  "type": "transaction-fee",
  "amount": -600
}
```
