Error

@JsonClass(generateAdapter = true)
data class Error(val code: BuyerVerificationResult.Error.Code, val message: String, val debugCode: String, val debugMessage: String) : BuyerVerificationResult

Represents the result of an unsuccessful BuyerVerification.verify operation.

Constructors

Link copied to clipboard
constructor(code: BuyerVerificationResult.Error.Code, message: String, debugCode: String, debugMessage: String)

Types

Link copied to clipboard

Possible error codes that can be returned as a result of attempting to verify a card nonce.

Properties

Link copied to clipboard

The error code. Use this value to handle the error.

Link copied to clipboard

A more detailed error code for troubleshooting.

Link copied to clipboard

A human-readable message containing additional debug information related to the possible cause of the error. Debug messages should not be displayed to buyers.

Link copied to clipboard

A displayable message that summarizes the possible cause of the error.

Functions

Link copied to clipboard

The result of an erroneous BuyerVerification.verify operation.

Link copied to clipboard
Link copied to clipboard

True if the BuyerVerification.verify operation resulted in an error.

Link copied to clipboard

True if the BuyerVerification.verify operation was successful. See getSuccessValue for the result.