commonMain.com.revenuecat.purchases.kmp.models.RecurrenceMode.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of purchases-kmp-models Show documentation
Show all versions of purchases-kmp-models Show documentation
Mobile subscriptions in hours, not months.
package com.revenuecat.purchases.kmp.models
/**
* Recurrence mode for a pricing phase. Google Play Store only.
*/
public enum class RecurrenceMode {
/**
* Pricing phase repeats infinitely until cancellation.
*/
INFINITE_RECURRING,
/**
* Pricing phase repeats for a fixed number of billing periods.
*/
FINITE_RECURRING,
/**
* Pricing phase does not repeat.
*/
NON_RECURRING,
UNKNOWN,
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy