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

PaymentMethodDomainResourcePaymentMethodDomain

A payment method domain represents a web domain that you have registered with Stripe.
Stripe Elements use registered payment method domains to control where certain payment methods are shown.

Related guide: [Payment method domains](https://docs.stripe.com/payments/payment-methods/pmd-registration).

# `t`

```elixir
@type t() :: %Stripe.Resources.PaymentMethodDomain{
  amazon_pay: Stripe.Resources.PaymentMethodDomain.AmazonPay.t(),
  apple_pay: Stripe.Resources.PaymentMethodDomain.ApplePay.t(),
  created: integer(),
  domain_name: String.t(),
  enabled: boolean(),
  google_pay: Stripe.Resources.PaymentMethodDomain.GooglePay.t(),
  id: String.t(),
  klarna: Stripe.Resources.PaymentMethodDomain.Klarna.t(),
  link: Stripe.Resources.PaymentMethodDomain.Link.t(),
  livemode: boolean(),
  object: String.t(),
  paypal: Stripe.Resources.PaymentMethodDomain.Paypal.t()
}
```

* `amazon_pay` - Expandable.
* `apple_pay` - Expandable.
* `created` - Time at which the object was created. Measured in seconds since the Unix epoch. Format: Unix timestamp.
* `domain_name` - The domain name that this payment method domain object represents. Max length: 5000.
* `enabled` - Whether this payment method domain is enabled. If the domain is not enabled, payment methods that require a payment method domain will not appear in Elements.
* `google_pay` - Expandable.
* `id` - Unique identifier for the object. Max length: 5000.
* `klarna` - Expandable.
* `link` - Expandable.
* `livemode` - Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
* `object` - String representing the object's type. Objects of the same type share the same value. Possible values: `payment_method_domain`.
* `paypal` - Expandable.

# `expandable_fields`

# `object_name`

---

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