cordova-plugin-qonversion
Version:
Qonversion Cordova Plugin
25 lines (24 loc) • 792 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SKProductDiscount = void 0;
class SKProductDiscount {
price;
localeIdentifier;
numberOfPeriods;
subscriptionPeriod;
paymentMode;
identifier;
type;
currencySymbol;
constructor(price, localeIdentifier, numberOfPeriods, subscriptionPeriod, paymentMode, identifier, type, currencySymbol) {
this.price = price;
this.localeIdentifier = localeIdentifier;
this.numberOfPeriods = numberOfPeriods;
this.subscriptionPeriod = subscriptionPeriod;
this.paymentMode = paymentMode;
this.identifier = identifier;
this.type = type;
this.currencySymbol = currencySymbol;
}
}
exports.SKProductDiscount = SKProductDiscount;