PayFanout API reference
    Preparing search index...

    Interface StripeRefundLike

    interface StripeRefundLike {
        amount: number;
        created?: number;
        id: string;
        payment_intent?: string | { id: string } | null;
        status:
            | "requires_action"
            | "succeeded"
            | "canceled"
            | "failed"
            | "pending"
            | null;
    }
    Index
    amount: number
    created?: number
    id: string
    payment_intent?: string | { id: string } | null
    status:
        | "requires_action"
        | "succeeded"
        | "canceled"
        | "failed"
        | "pending"
        | null