Interface DonationAlertsGoalUpdateEventJson

Represents a goal update event from Donation Alerts as a plain JavaScript object.

interface DonationAlertsGoalUpdateEventJson {
    currency: DonationAlertsInputCurrency;
    expiryDate: null | Date;
    goalAmount: number;
    id: number;
    isActive: boolean;
    raisedAmount: number;
    startAmount: number;
    startDate: Date;
    title: string;
}

Properties

expiryDate: null | Date
goalAmount: number
id: number
isActive: boolean
raisedAmount: number
startAmount: number
startDate: Date
title: string