iosMain.com.revenuecat.purchases.kmp.mappings.EntitlementInfos.ios.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of purchases-kmp-mappings Show documentation
Show all versions of purchases-kmp-mappings Show documentation
Mobile subscriptions in hours, not months.
package com.revenuecat.purchases.kmp.mappings
import cocoapods.PurchasesHybridCommon.RCEntitlementInfo
import cocoapods.PurchasesHybridCommon.RCEntitlementInfos
import com.revenuecat.purchases.kmp.mappings.ktx.mapEntries
import com.revenuecat.purchases.kmp.models.EntitlementInfos
internal fun RCEntitlementInfos.toEntitlementInfos(): EntitlementInfos =
EntitlementInfos(
all().mapEntries {
it.key as String to (it.value as RCEntitlementInfo).toEntitlementInfo()
},
verification().toVerificationResult()
)