# The PaymentMethodDomain object

### The PaymentMethodDomain object

```json
{
  "id": "pmd_1Nnrer2eZvKYlo2Cips79tWl",
  "object": "payment_method_domain",
  "apple_pay": {
    "status": "active"
  },
  "created": 1694129445,
  "domain_name": "example.com",
  "enabled": true,
  "google_pay": {
    "status": "active"
  },
  "link": {
    "status": "active"
  },
  "livemode": false,
  "paypal": {
    "status": "active"
  }
}
```

## Attributes

- `id` (string)
  Unique identifier for the object.

- `object` (string)
  String representing the object’s type. Objects of the same type share the same value.

- [`amazon_pay`](https://docs.stripe.com/api/payment_method_domains/object.md?query=amazon_pay) (object)
  The status of Amazon Pay’s eligibility on the domain.

- [`apple_pay`](https://docs.stripe.com/api/payment_method_domains/object.md?query=apple_pay) (object)
  The status of Apple Pay’s eligibility on the domain.

- `created` (timestamp)
  Time at which the object was created. Measured in seconds since the Unix epoch.

- `domain_name` (string)
  The domain name that this payment method domain object represents.

- `enabled` (boolean)
  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`](https://docs.stripe.com/api/payment_method_domains/object.md?query=google_pay) (object)
  The status of Google Pay’s eligibility on the domain.

- [`klarna`](https://docs.stripe.com/api/payment_method_domains/object.md?query=klarna) (object)
  The status of Klarna’s eligibility on the domain.

- [`link`](https://docs.stripe.com/api/payment_method_domains/object.md?query=link) (object)
  The status of Link’s eligibility on the domain.

- `livemode` (boolean)
  If the object exists in live mode, the value is `true`. If the object exists in test mode, the value is `false`.

- [`paypal`](https://docs.stripe.com/api/payment_method_domains/object.md?query=paypal) (object)
  The status of PayPal’s eligibility on the domain.
