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
20 lines (19 loc) • 780 B
TypeScript
/**
* This class represents the details about the installment plan for a subscription product.
*/
declare class ProductInstallmentPlanDetails {
/**
* Committed payments count after a user signs up for this subscription plan.
*/
commitmentPaymentsCount: number;
/**
* 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: number;
constructor(commitmentPaymentsCount: number, subsequentCommitmentPaymentsCount: number);
}
export default ProductInstallmentPlanDetails;