Interface DonationAlertsDonationJson

Represents a donation received through Donation Alerts as a plain JavaScript object.

interface DonationAlertsDonationJson {
    amount: number;
    creationDate: Date;
    currency: DonationAlertsOutputCurrency;
    id: number;
    isShown: boolean;
    message: string;
    messageType: DonationMessageType;
    name: "Donations";
    showDate: null | Date;
    username: string;
}

Properties

amount: number
creationDate: Date
id: number
isShown: boolean
message: string
messageType: DonationMessageType
name: "Donations"
showDate: null | Date
username: string