Success

data class Success<out T>(val data: T) : PurchaseResult<T>

Represents a successful result of an operation.

Parameters

T

The type of data contained in the result. This will be a subtype of SdkSuccessAnswer.

Constructors

Link copied to clipboard
constructor(data: T)

Properties

Link copied to clipboard
val data: T

The data returned by the operation.