23 lines
647 B
Kotlin
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
|
|
}
|
|
} |