LimitedTimeOfferProvider
Overview
The API of the MagifyService.Offers
service providing LTO information is described here. This class is the main entry point to working with LTO.
OnUpdated
IObservable<LtoInfo> OnUpdated { get; }
Notifies you that the status or content of the offer has changed and you need to update this offer.
OnFinished
IObservable<LtoInfo> OnFinished { get; }
Notifies that the offer has ended for any reason (expired, the conditions of showing this offer have changed, the company has become irrelevant, conflicting offer, was finished manually).
ActiveOffers
IReadOnlyReactiveCollection<LtoInfo> ActiveOffers { get; }
Contains a list of active offerers. It's a reactive collection, so you can subscribe on changing of it to track adding and re,oving of offers.
CompleteActiveLto
void CompleteActiveLto(string offerName)
Force terminates an active offerer by its name. OnFinished listeners will be notified.