Interface DonationAlertsMerchandiseJson

Represents Donation Alerts merchandise as a plain JavaScript object.

interface DonationAlertsMerchandiseJson {
    currency: DonationAlertsOutputCurrency;
    endDate: null | Date;
    id: number;
    identifier: string;
    imageUrl: null | string;
    isActive: boolean;
    isPercentage: boolean;
    merchant: DonationAlertsMerchandiseMerchantData;
    priceService: number;
    priceUser: number;
    title: DonationAlertsMerchandiseTitleData;
    url: null | string;
}

Properties

endDate: null | Date
id: number
identifier: string
imageUrl: null | string
isActive: boolean
isPercentage: boolean
merchant: DonationAlertsMerchandiseMerchantData
priceService: number
priceUser: number
url: null | string