BTPaymentFlowDriver+ThreeDSecure_Internal.h 546 B

123456789101112131415161718192021
  1. #if __has_include("BraintreeCore.h")
  2. #import "BraintreeCore.h"
  3. #else
  4. #import <BraintreeCore/BraintreeCore.h>
  5. #endif
  6. #import "BTPaymentFlowDriver+ThreeDSecure.h"
  7. #import "BTThreeDSecureLookup.h"
  8. NS_ASSUME_NONNULL_BEGIN
  9. @class BTThreeDSecureRequest;
  10. @interface BTPaymentFlowDriver (ThreeDSecure_Internal)
  11. - (void)performThreeDSecureLookup:(BTThreeDSecureRequest *)request
  12. completion:(void (^)(BTThreeDSecureLookup * _Nullable threeDSecureResult, NSError * _Nullable error))completionBlock;
  13. @end
  14. NS_ASSUME_NONNULL_END