Interface DonationAlertsMerchandiseSaleJson

Represents Donation Alerts merchandise sale alert as a plain JavaScript object.

interface DonationAlertsMerchandiseSaleJson {
    amount: number;
    boughtAmount: number;
    creationDate: Date;
    currency: DonationAlertsOutputCurrency;
    externalId: string;
    id: number;
    isShown: boolean;
    message: null | string;
    name: string;
    showDate: null | Date;
    username: null | string;
}

Properties

amount: number
boughtAmount: number
creationDate: Date
externalId: string
id: number
isShown: boolean
message: null | string
name: string
showDate: null | Date
username: null | string