PurchaseResult

class PurchaseResult(val result: BillingResult, val purchases: List<Purchase>?) : PurchasingObserverState(source)

Tracks a successful purchase flow for a product, equal to Transaction Success event.

Parameters

result

The result of the purchase flow.

purchases

The list of purchases that were made.

Constructors

Link copied to clipboard
constructor(result: BillingResult, purchases: List<Purchase>?)

Properties

Link copied to clipboard
val purchases: List<Purchase>?
Link copied to clipboard
val result: BillingResult