# `Stripe.Resources.Issuing.Authorization.PendingRequest`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/resources/issuing/authorization.ex#L356)

Nested struct within the parent resource.

# `t`

```elixir
@type t() :: %Stripe.Resources.Issuing.Authorization.PendingRequest{
  amount: integer() | nil,
  amount_details:
    Stripe.Resources.Issuing.Authorization.PendingRequest.AmountDetails.t()
    | nil,
  currency: String.t() | nil,
  is_amount_controllable: boolean() | nil,
  merchant_amount: integer() | nil,
  merchant_currency: String.t() | nil,
  network_risk_score: integer() | nil
}
```

* `amount` - The additional amount Stripe will hold if the authorization is approved, in the card's [currency](https://docs.stripe.com/api#issuing_authorization_object-pending-request-currency) and in the [smallest currency unit](https://docs.stripe.com/currencies#zero-decimal).
* `amount_details` - Detailed breakdown of amount components. These amounts are denominated in `currency` and in the [smallest currency unit](https://docs.stripe.com/currencies#zero-decimal). 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.
* `is_amount_controllable` - If set `true`, you may provide [amount](https://docs.stripe.com/api/issuing/authorizations/approve#approve_issuing_authorization-amount) to control how much to hold for the authorization.
* `merchant_amount` - The amount the merchant is requesting to be authorized in the `merchant_currency`. The amount is in the [smallest currency unit](https://docs.stripe.com/currencies#zero-decimal).
* `merchant_currency` - The local currency the merchant is requesting to authorize. Format: ISO 4217 currency code.
* `network_risk_score` - The card network's estimate of the likelihood that an authorization is fraudulent. Takes on values between 1 and 99. Nullable.

---

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