Interface DonationAlertsPollUpdateEventJson

Represents an updated poll object from Donation Alerts as a plain JavaScript object.

interface DonationAlertsPollUpdateEventJson {
    allowUserOptions: boolean;
    id: number;
    isActive: boolean;
    options: DonationAlertsPollOptionJson[];
    title: string;
    type: DonationAlertsPollType;
}

Properties

allowUserOptions: boolean
id: number
isActive: boolean
title: string