PayFanout API reference
    Preparing search index...

    Interface StripePaymentMethodLike

    interface StripePaymentMethodLike {
        card?:
            | {
                brand?: string;
                exp_month?: number;
                exp_year?: number;
                last4?: string;
            }
            | null;
        created?: number;
        customer?: string
        | { id: string }
        | null;
        id: string;
        type?: string;
    }
    Index
    card?:
        | {
            brand?: string;
            exp_month?: number;
            exp_year?: number;
            last4?: string;
        }
        | null
    created?: number
    customer?: string | { id: string } | null
    id: string
    type?: string