Mayson Monorepo Documentation
    Preparing search index...
    interface RefundPayment {
        amount?: number;
        charge?: string | Stripe.Charge;
        metadata?: Metadata;
        payment_intent?: string | Stripe.PaymentIntent;
        reason?: Stripe.Terminal.Reader.Action.RefundPayment.Reason;
        refund?: string | Stripe.Refund;
        refund_application_fee?: boolean;
        refund_payment_config?: Stripe.Terminal.Reader.Action.RefundPayment.RefundPaymentConfig;
        reverse_transfer?: boolean;
    }
    Index

    Properties

    amount?: number

    The amount being refunded.

    charge?: string | Stripe.Charge

    Charge that is being refunded.

    metadata?: Metadata

    Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.

    payment_intent?: string | Stripe.PaymentIntent

    Payment intent that is being refunded.

    The reason for the refund.

    refund?: string | Stripe.Refund

    Unique identifier for the refund object.

    refund_application_fee?: boolean

    Boolean indicating whether the application fee should be refunded when refunding this charge. If a full charge refund is given, the full application fee will be refunded. Otherwise, the application fee will be refunded in an amount proportional to the amount of the charge refunded. An application fee can be refunded only by the application that created the charge.

    Represents a per-transaction override of a reader configuration

    reverse_transfer?: boolean

    Boolean indicating whether the transfer should be reversed when refunding this charge. The transfer will be reversed proportionally to the amount being refunded (either the entire or partial amount). A transfer can be reversed only by the application that created the charge.