UNPKG

react-native-qonversion

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

25 lines 1.03 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); /** * This class represents the details about the installment plan for a subscription product. */ class ProductInstallmentPlanDetails { /** * Committed payments count after a user signs up for this subscription plan. */ commitmentPaymentsCount; /** * Subsequent committed payments count after this subscription plan renews. * * Returns 0 if the installment plan doesn't have any subsequent commitment, * which means this subscription plan will fall back to a normal * non-installment monthly plan when the plan renews. */ subsequentCommitmentPaymentsCount; constructor(commitmentPaymentsCount, subsequentCommitmentPaymentsCount) { this.commitmentPaymentsCount = commitmentPaymentsCount; this.subsequentCommitmentPaymentsCount = subsequentCommitmentPaymentsCount; } } exports.default = ProductInstallmentPlanDetails; //# sourceMappingURL=ProductInstallmentPlanDetails.js.map