import { OfferCapabilitiesEnum } from './OfferCapabilitiesEnum';
/** History of your boost requests */
export interface BoostHistory {
    /** Account who requested the change */
    accountId: string;
    /** Boost offer used */
    boostOffer?: OfferCapabilitiesEnum;
    /** The date when the change has been requested */
    date: string;
    /** Offer when the change was made */
    offer: OfferCapabilitiesEnum;
}
//# sourceMappingURL=BoostHistory.d.ts.map