Skip to content

Commit

Permalink
Merge pull request #546 from qonversion/renewsCountFix
Browse files Browse the repository at this point in the history
Fixed renews count mapping key
  • Loading branch information
suriksarkisyan authored Jan 11, 2024
2 parents a577d24 + caaa16e commit e865220
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ internal data class QPermission(
@Json(name = "expiration_timestamp") val expirationDate: Date?,
@Json(name = "source") val source: QEntitlementSource = QEntitlementSource.Unknown,
@Json(name = "active") internal val active: Int,
@Json(name = "renewsCount") val renewsCount: Int = 0,
@Json(name = "renews_count") val renewsCount: Int = 0,
@Json(name = "trial_start_timestamp") val trialStartDate: Date?,
@Json(name = "first_purchase_timestamp") val firstPurchaseDate: Date?,
@Json(name = "last_purchase_timestamp") val lastPurchaseDate: Date?,
Expand Down

0 comments on commit e865220

Please sign in to comment.