| 1234567891011121314151617181920212223242526 |
- #import <Foundation/Foundation.h>
- #import "BTThreeDSecureRequest.h"
- #import "BTThreeDSecureResult.h"
- #import "BTThreeDSecureLookup.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface BTThreeDSecureV2Provider : NSObject
- typedef void (^BTThreeDSecureV2ProviderInitializeCompletionHandler)(NSDictionary *lookupParameters);
- typedef void (^BTThreeDSecureV2ProviderProcessBinCompletionHandler)(NSDictionary *details);
- typedef void (^BTThreeDSecureV2ProviderSuccessHandler)(BTThreeDSecureResult *result);
- typedef void (^BTThreeDSecureV2ProviderFailureHandler)(NSError *error);
- + (instancetype)initializeProviderWithConfiguration:(BTConfiguration *)configuration
- apiClient:(BTAPIClient *)apiClient
- request:(BTThreeDSecureRequest *)request
- completion:(BTThreeDSecureV2ProviderInitializeCompletionHandler)completionHandler;
- - (void)processLookupResult:(BTThreeDSecureLookup *)lookupResult
- success:(BTThreeDSecureV2ProviderSuccessHandler)successHandler
- failure:(BTThreeDSecureV2ProviderFailureHandler)failureHandler;
- @end
- NS_ASSUME_NONNULL_END
|