UNPKG

@qonversion/capacitor-plugin

Version:

Qonversion provides full in-app purchases infrastructure, so you do not need to build your own server for receipt validation. Implement in-app subscriptions, validate user receipts, check subscription status, and provide access to your app features and co

20 lines 894 B
export class Product { constructor(qonversionId, storeId, basePlanId, storeDetails, skProduct, offeringId, subscriptionPeriod, trialPeriod, type, prettyPrice, price, currencyCode, storeTitle, storeDescription, prettyIntroductoryPrice) { this.qonversionId = qonversionId; this.storeId = storeId; this.basePlanId = basePlanId; this.storeDetails = storeDetails; this.skProduct = skProduct; this.offeringId = offeringId; this.subscriptionPeriod = subscriptionPeriod; this.trialPeriod = trialPeriod; this.type = type; this.prettyPrice = prettyPrice; this.price = price; this.currencyCode = currencyCode; this.storeTitle = storeTitle; this.storeDescription = storeDescription; this.prettyIntroductoryPrice = prettyIntroductoryPrice; } } //# sourceMappingURL=Product.js.map