Mayson Monorepo Documentation
    Preparing search index...
    interface Payment {
        charge?: string | Stripe.Charge;
        payment_intent?: string | Stripe.PaymentIntent;
        payment_record?: string | Stripe.PaymentRecord;
        type: Stripe.InvoicePayment.Payment.Type;
    }
    Index

    Properties

    charge?: string | Stripe.Charge

    ID of the successful charge for this payment when type is charge.Note: charge is only surfaced if the charge object is not associated with a payment intent. If the charge object does have a payment intent, the Invoice Payment surfaces the payment intent instead.

    payment_intent?: string | Stripe.PaymentIntent

    ID of the PaymentIntent associated with this payment when type is payment_intent. Note: This property is only populated for invoices finalized on or after March 15th, 2019.

    payment_record?: string | Stripe.PaymentRecord

    ID of the PaymentRecord associated with this payment when type is payment_record.

    Type of payment object associated with this invoice payment.