GooglePayNonceResult

Represents the result of a GooglePay.requestGooglePayNonce operation. The result will be an instance of Success if the operation is successful or Error if the operation failed.

Inheritors

Types

Link copied to clipboard
data class Error(val code: GooglePayNonceResult.Error.Code, val message: String, val debugCode: String, val debugMessage: String) : GooglePayNonceResult

Represents the result of an unsuccessful GooglePay.requestGooglePayNonce operation.

Link copied to clipboard
data class Success(val nonce: String, val card: Card) : GooglePayNonceResult, CardDetails

Represents the result of a successful GooglePay.requestGooglePayNonce operation. Contains the card nonce and additional Card details.

Functions

Link copied to clipboard

The result of an erroneous GooglePay.requestGooglePayNonce operation.

Link copied to clipboard

The result of a successful GooglePay.requestGooglePayNonce operation.

Link copied to clipboard

True if the GooglePay.requestGooglePayNonce operation resulted in an error.

Link copied to clipboard

True if the GooglePay.requestGooglePayNonce operation was successful. See getSuccessValue for the result.