-
public class BuyerVerificationResult
Represents the result of a ,VerificationParameters,Integer)>BuyerVerification.verify operation. The result will be an instance of Success if the operation is successful or Error if the operation failed.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final class
BuyerVerificationResult.Success
Represents the result of a successful BuyerVerificationResult.verify operation. Contains a value indicating whether the user was challenged and the verification token.
public final class
BuyerVerificationResult.Error
Represents the result of an unsuccessful ,VerificationParameters,Integer)>BuyerVerification.verify operation.
-
Method Summary
Modifier and Type Method Description final Boolean
isSuccess()
True if the ,VerificationParameters,Integer)>BuyerVerification.verify operation was successful. final BuyerVerificationResult.Success
getSuccessValue()
The result of a successful ,VerificationParameters,Integer)>BuyerVerification.verify operation. final BuyerVerificationResult.Error
getErrorValue()
The result of an erroneous ,VerificationParameters,Integer)>BuyerVerification.verify operation. final Boolean
isError()
True if the ,VerificationParameters,Integer)>BuyerVerification.verify operation resulted in an error. -
-
Method Detail
-
isSuccess
final Boolean isSuccess()
True if the ,VerificationParameters,Integer)>BuyerVerification.verify operation was successful. See getSuccessValue for the result.
-
getSuccessValue
final BuyerVerificationResult.Success getSuccessValue()
The result of a successful ,VerificationParameters,Integer)>BuyerVerification.verify operation.
-
getErrorValue
final BuyerVerificationResult.Error getErrorValue()
The result of an erroneous ,VerificationParameters,Integer)>BuyerVerification.verify operation.
-
isError
final Boolean isError()
True if the ,VerificationParameters,Integer)>BuyerVerification.verify operation resulted in an error.
-
-
-
-