# `Stripe.Resources.Radar.PaymentEvaluation.PaymentDetails`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/resources/radar/payment_evaluation.ex#L390)

Nested struct within the parent resource.

# `t`

```elixir
@type t() :: %Stripe.Resources.Radar.PaymentEvaluation.PaymentDetails{
  amount: integer() | nil,
  currency: String.t() | nil,
  description: String.t() | nil,
  money_movement_details:
    Stripe.Resources.Radar.PaymentEvaluation.PaymentDetails.MoneyMovementDetails.t()
    | nil,
  payment_method_details:
    Stripe.Resources.Radar.PaymentEvaluation.PaymentDetails.PaymentMethodDetails.t()
    | nil,
  shipping_details:
    Stripe.Resources.Radar.PaymentEvaluation.PaymentDetails.ShippingDetails.t()
    | nil,
  statement_descriptor: String.t() | nil
}
```

* `amount` - Amount intended to be collected by this payment. A positive integer representing how much to charge in the [smallest currency unit](https://docs.stripe.com/currencies#zero-decimal) (e.g., 100 cents to charge $1.00 or 100 to charge ¥100, a zero-decimal currency). The minimum amount is $0.50 US or [equivalent in charge currency](https://docs.stripe.com/currencies#minimum-and-maximum-charge-amounts). The amount value supports up to eight digits (e.g., a value of 99999999 for a USD charge of $999,999.99).
* `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.
* `money_movement_details` - Details about the payment's customer presence and type. Nullable.
* `payment_method_details` - Details about the payment method used for the payment. Nullable.
* `shipping_details` - Shipping details for the payment evaluation. Nullable.
* `statement_descriptor` - Payment statement descriptor. Max length: 5000. Nullable.

---

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