Files
peko-android-gms/src/main/java/com/example/module_google/billing/OneTimePurchaseOfferDetailsImpl.kt
2023-11-28 02:35:33 +08:00

23 lines
647 B
Kotlin

package com.example.module_google.billing
import com.android.billingclient.api.ProductDetails.OneTimePurchaseOfferDetails
import com.example.module_base.support.billing.IOneTimePurchaseOfferDetails
/**
* Created by Max on 2023/11/22 21:05
* Desc:
**/
class OneTimePurchaseOfferDetailsImpl(val data: OneTimePurchaseOfferDetails) :
IOneTimePurchaseOfferDetails {
override fun getPriceAmountMicros(): Long {
return data.priceAmountMicros
}
override fun getFormattedPrice(): String {
return data.formattedPrice
}
override fun getPriceCurrencyCode(): String {
return data.priceCurrencyCode
}
}