interface CheckoutDonationProps {
    amount_donation: number;
    amount_tip: number;
    email: string;
    first_name: string;
    last_name: string;
    lcdpPromise: Promise<null | LCDP>;
    message?: null | string;
    pot_id: string;
    return_url: string;
}

Hierarchy (View Summary)

Properties

amount_donation: number
amount_tip: number
email: string
first_name: string
last_name: string
lcdpPromise: Promise<null | LCDP>
message?: null | string
pot_id: string
return_url: string