cordova-plugin-qonversion
Version:
Qonversion Cordova Plugin
23 lines (22 loc) • 682 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PurchaseOptions = void 0;
class PurchaseOptions {
offerId;
applyOffer;
oldProduct;
updatePolicy;
contextKeys;
quantity;
promotionalOffer;
constructor(offerId, applyOffer, oldProduct, updatePolicy, contextKeys, quantity, promotionalOffer) {
this.offerId = offerId;
this.applyOffer = applyOffer;
this.oldProduct = oldProduct;
this.updatePolicy = updatePolicy;
this.contextKeys = contextKeys;
this.quantity = quantity;
this.promotionalOffer = promotionalOffer;
}
}
exports.PurchaseOptions = PurchaseOptions;