Mayson Monorepo Documentation
    Preparing search index...

    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.

    interface PaymentMethodDomain {
        id: string;
        object: "payment_method_domain";
        amazon_pay: Stripe.PaymentMethodDomain.AmazonPay;
        apple_pay: Stripe.PaymentMethodDomain.ApplePay;
        created: number;
        domain_name: string;
        enabled: boolean;
        google_pay: Stripe.PaymentMethodDomain.GooglePay;
        klarna: Stripe.PaymentMethodDomain.Klarna;
        link: Stripe.PaymentMethodDomain.Link;
        livemode: boolean;
        paypal: Stripe.PaymentMethodDomain.Paypal;
    }
    Index

    Properties

    id: string

    Unique identifier for the object.

    object: "payment_method_domain"

    String representing the object's type. Objects of the same type share the same value.

    Indicates the status of a specific payment method on a payment method domain.

    Indicates the status of a specific payment method on a payment method domain.

    created: number

    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.

    Indicates the status of a specific payment method on a payment method domain.

    Indicates the status of a specific payment method on a payment method domain.

    Indicates the status of a specific payment method on a payment method domain.

    livemode: boolean

    Has the value true if the object exists in live mode or the value false if the object exists in test mode.

    Indicates the status of a specific payment method on a payment method domain.