# `Stripe.Resources.BalanceTransaction.FeeDetails`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/resources/balance_transaction.ex#L73)

Nested struct within the parent resource.

# `t`

```elixir
@type t() :: %Stripe.Resources.BalanceTransaction.FeeDetails{
  amount: integer() | nil,
  application: String.t() | nil,
  currency: String.t() | nil,
  description: String.t() | nil,
  type: String.t() | nil
}
```

* `amount` - Amount of the fee, in cents.
* `application` - ID of the Connect application that earned the fee. Max length: 5000. Nullable.
* `currency` - 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). Format: ISO 4217 currency code.
* `description` - An arbitrary string attached to the object. Often useful for displaying to users. Max length: 5000. Nullable.
* `type` - Type of the fee, one of: `application_fee`, `payment_method_passthrough_fee`, `stripe_fee` or `tax`. Max length: 5000.

---

*Consult [api-reference.md](api-reference.md) for complete listing*
