All Downloads are FREE. Search and download functionalities are using the official Maven repository.

iosMain.com.revenuecat.purchases.kmp.mappings.PromotionalOffer.ios.kt Maven / Gradle / Ivy

There is a newer version: 1.3.2+13.9.0
Show newest version
package com.revenuecat.purchases.kmp.mappings

import com.revenuecat.purchases.kmp.models.PromotionalOffer
import com.revenuecat.purchases.kmp.models.StoreProductDiscount
import cocoapods.PurchasesHybridCommon.RCPromotionalOffer as NativeIosPromotionalOffer

public fun NativeIosPromotionalOffer.toPromotionalOffer(): PromotionalOffer =
    IosPromotionalOffer(this)

public fun PromotionalOffer.toIosPromotionalOffer(): NativeIosPromotionalOffer = (this as IosPromotionalOffer).wrapped

private class IosPromotionalOffer(val wrapped: NativeIosPromotionalOffer) : PromotionalOffer {
    override val discount: StoreProductDiscount =
        wrapped.discount().toStoreProductDiscount()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy