interface Offer {
    Cost: Currency;
    IsDirectPurchase: boolean;
    OfferID: string;
    Rewards: {
        ItemID: string;
        ItemTypeID: string;
        Quantity: number;
    }[];
    StartDate: Date;
}

Properties

Cost: Currency
IsDirectPurchase: boolean
OfferID: string
Rewards: {
    ItemID: string;
    ItemTypeID: string;
    Quantity: number;
}[]
StartDate: Date