commonMain.com.revenuecat.purchases.kmp.models.StoreTransaction.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of purchases-kmp-models Show documentation
Show all versions of purchases-kmp-models Show documentation
Mobile subscriptions in hours, not months.
package com.revenuecat.purchases.kmp.models
/**
* Represents an in-app billing purchase.
*/
public class StoreTransaction(
/**
* Unique (per store) order identifier for the purchased transaction. Always null for Amazon.
* Only available for non-restored Google purchases for Google Play.
*/
public val transactionId: String?,
/**
* Product IDs purchased.
*
* Size can be greater than 1 on Android. This indicates that a multi-line purchase occurred,
* which RevenueCat does not support.
* Only the first productId will be processed by the SDK.
*/
public val productIds: List,
/**
* Time the product was purchased, in milliseconds since the epoch.
*/
public val purchaseTime: Long,
)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy