# `Stripe.Resources.Reserve.Release`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/resources/reserve/release.ex#L2)

ReservesReserveReleasesResourcesReserveRelease

ReserveReleases represent the release of funds from a ReserveHold.

# `t`

```elixir
@type t() :: %Stripe.Resources.Reserve.Release{
  amount: term(),
  created: term(),
  created_by: term(),
  currency: term(),
  id: term(),
  livemode: term(),
  metadata: term(),
  object: term(),
  reason: term(),
  released_at: term(),
  reserve_hold: term(),
  reserve_plan: term(),
  source_transaction: term()
}
```

* `amount` - Amount released. A positive integer representing how much is released in the [smallest currency unit](https://docs.stripe.com/currencies#zero-decimal).
* `created` - Time at which the object was created. Measured in seconds since the Unix epoch. Format: Unix timestamp.
* `created_by` - Indicates which party created this ReserveRelease. Possible values: `application`, `stripe`.
* `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.
* `id` - Unique identifier for the object. Max length: 5000.
* `livemode` - If the object exists in live mode, the value is `true`. If the object exists in test mode, the value is `false`.
* `metadata` - Set of [key-value pairs](https://docs.stripe.com/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
* `object` - String representing the object's type. Objects of the same type share the same value. Possible values: `reserve.release`.
* `reason` - The reason for the ReserveRelease, indicating why the funds were released. Possible values: `bulk_hold_expiry`, `hold_released_early`, `hold_reversed`, `plan_disabled`.
* `released_at` - The release timestamp of the funds. Format: Unix timestamp.
* `reserve_hold` - The ReserveHold this ReserveRelease is associated with. Nullable. Expandable.
* `reserve_plan` - The ReservePlan ID this ReserveRelease is associated with. This field is only populated if a ReserveRelease is created by a ReservePlan disable operation, or from a scheduled ReservedHold expiry. Nullable. Expandable.
* `source_transaction` - Expandable.

# `expandable_fields`

# `object_name`

---

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