# fee

From **Stripe API**.

- Type: `object`

## Properties

### `amount`

- Required: true
- Type: `integer`

Amount of the fee, in cents.

### `application`

- Required: false
- Type: `string`
- Nullable: true
- maxLength: `5000`

ID of the Connect application that earned the fee.

### `currency`

- Required: true
- Type: `string`

Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies).

### `description`

- Required: false
- Type: `string`
- Nullable: true
- maxLength: `5000`

An arbitrary string attached to the object. Often useful for displaying to users.

### `type`

- Required: true
- Type: `string`
- maxLength: `5000`

Type of the fee, one of: `application_fee`, `stripe_fee` or `tax`.

## JSON Schema

```json
{"properties":{"amount":{"description":"Amount of the fee, in cents.","type":"integer"},"application":{"description":"ID of the Connect application that earned the fee.","maxLength":5000,"nullable":true,"type":"string"},"currency":{"description":"Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies).","type":"string"},"description":{"description":"An arbitrary string attached to the object. Often useful for displaying to users.","maxLength":5000,"nullable":true,"type":"string"},"type":{"description":"Type of the fee, one of: `application_fee`, `stripe_fee` or `tax`.","maxLength":5000,"type":"string"}},"required":["amount","currency","type"],"title":"Fee","type":"object","x-expandableFields":[]}
```
