Interface Contribution

interface Contribution {
    id: string;
    amount: number;
    paymentStatus: PaymentStatus;
    paidAt?: null | string;
    createdAt: string;
    user?: null | ContributorInfo;
    invitation: {
        inviteePhone?: null | string;
        inviteeEmail?: null | string;
        assignedAmount?: null | number;
    };
}

Properties

id: string
amount: number

Amount paid in smallest currency unit

paymentStatus: PaymentStatus
paidAt?: null | string
createdAt: string
user?: null | ContributorInfo
invitation: {
    inviteePhone?: null | string;
    inviteeEmail?: null | string;
    assignedAmount?: null | number;
}