@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
19 lines • 1.05 kB
JavaScript
export class SKProduct {
constructor(localizedDescription, localizedTitle, price, localeIdentifier, productIdentifier, isDownloadable, downloadContentVersion, downloadContentLengths, subscriptionPeriod, productDiscount, discounts, subscriptionGroupIdentifier, isFamilyShareable, currencyCode) {
this.localizedDescription = localizedDescription;
this.localizedTitle = localizedTitle;
this.price = price;
this.localeIdentifier = localeIdentifier;
this.productIdentifier = productIdentifier;
this.isDownloadable = isDownloadable;
this.downloadContentVersion = downloadContentVersion;
this.downloadContentLengths = downloadContentLengths;
this.subscriptionPeriod = subscriptionPeriod;
this.productDiscount = productDiscount;
this.discounts = discounts;
this.subscriptionGroupIdentifier = subscriptionGroupIdentifier;
this.isFamilyShareable = isFamilyShareable;
this.currencyCode = currencyCode;
}
}
//# sourceMappingURL=SKProduct.js.map