BuyerVerificationResult

Represents the result of a BuyerVerification.verify 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
@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.

Link copied to clipboard
@JsonClass(generateAdapter = true)
data class Success(val hasChallengedUser: Boolean, val verificationToken: String) : BuyerVerificationResult

Represents the result of a successful BuyerVerificationResult.verify operation. Contains a value indicating whether the user was challenged and the verification token.

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.