interface DonationPayload {
    _id: string;
    amount: number;
    currency: string;
    formatted_amount: string;
    from: string;
    from_user_id: number;
    isTest: boolean;
    message: string;
    name: string;
    priority: number;
    to: To;
}

Properties

_id: string
amount: number
currency: string
formatted_amount: string
from: string
from_user_id: number
isTest: boolean
message: string
name: string
priority: number
to: To