SQIPBuyerVerificationSDK
@interface SQIPBuyerVerificationSDK : NSObject
Manages the SCA buyer verification flow and returns a verification token for a payment source ID.
-
The Buyer Verification SDK singleton. Use this to verify the customer prior to charging or storing a card.
Declaration
Objective-C
@property (class, nonatomic, strong, readonly, nonnull) SQIPBuyerVerificationSDK *shared; -
Verifies the buyer and provides a verification token
Declaration
Objective-C
- (void)verifyWithParameters:(nonnull SQIPVerificationParameters *)parameters theme:(nonnull SQIPTheme *)theme viewController:(nonnull UIViewController *)viewController success:(nonnull SQIPVerificationSuccessCompletion)success failure:(nonnull SQIPVerificationFailureCompletion)failure;Parameters
parametersObject that contains information necessary to verify the buyer.
themeThe theme instance used to style the challenge.
viewControllerThe viewController under the presented challenge.
successThe verificationDetails object that is returned if verify succeeded.
failureThe error object that is returned if verify failed.
SQIPBuyerVerificationSDK Class Reference