CustomCallbackResult

data class CustomCallbackResult(val status: CustomCallbackResultStatus, val data: Map<String, Any>? = null)(source)

The result to return from a custom callback handler.

Constructors

Link copied to clipboard
constructor(status: CustomCallbackResultStatus, data: Map<String, Any>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val data: Map<String, Any>?

Optional key-value pairs to return to the paywall. Values are type-preserved and accessible as callbacks..data..

Link copied to clipboard

Whether the callback succeeded or failed. Determines which branch (onSuccess/onFailure) executes in the paywall.