# `Stripe.Resources.Charge.PaymentMethodDetails.Paypal`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/resources/charge.ex#L1749)

Nested struct within the parent resource.

# `t`

```elixir
@type t() :: %Stripe.Resources.Charge.PaymentMethodDetails.Paypal{
  country: String.t() | nil,
  payer_email: String.t() | nil,
  payer_id: String.t() | nil,
  payer_name: String.t() | nil,
  seller_protection:
    Stripe.Resources.Charge.PaymentMethodDetails.Paypal.SellerProtection.t()
    | nil,
  transaction_id: String.t() | nil
}
```

* `country` - Two-letter ISO code representing the buyer's country. Values are provided by PayPal directly (if supported) at the time of authorization or settlement. They cannot be set or mutated. Max length: 5000. Nullable.
* `payer_email` - Owner's email. Values are provided by PayPal directly
(if supported) at the time of authorization or settlement. They cannot be set or mutated. Max length: 5000. Nullable.
* `payer_id` - PayPal account PayerID. This identifier uniquely identifies the PayPal customer. Max length: 5000. Nullable.
* `payer_name` - Owner's full name. Values provided by PayPal directly
(if supported) at the time of authorization or settlement. They cannot be set or mutated. Max length: 5000. Nullable.
* `seller_protection` - The level of protection offered as defined by PayPal Seller Protection for Merchants, for this transaction. Nullable.
* `transaction_id` - A unique ID generated by PayPal for this transaction. Max length: 5000. Nullable.

---

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