#import "BTPayPalDriver.h" #import "BTPayPalRequestFactory.h" #import NS_ASSUME_NONNULL_BEGIN @interface BTPayPalDriver () /** Set up the callback to be invoked on return from browser or app switch for PayPal Express Checkout (Checkout Flow) Exposed internally to test BTPayPalDriver app switch return behavior by simulating an app switch return */ - (void)setOneTimePaymentAppSwitchReturnBlock:(void (^)(BTPayPalAccountNonce * _Nullable tokenizedCheckout, NSError * _Nullable error))completionBlock; /** Set up the callback to be invoked on return from browser or app switch for PayPal Billing Agreement (Vault Flow) Exposed internally to test BTPayPalDriver app switch return behavior by simulating an app switch return */ - (void)setBillingAgreementAppSwitchReturnBlock:(void (^)(BTPayPalAccountNonce * _Nullable tokenizedAccount, NSError * _Nullable error))completionBlock; /** Set up the callback to be invoked on return from browser or app switch for PayPal Future Payments (Vault Flow) Exposed internally to test BTPayPalDriver app switch return behavior by simulating an app switch return */ - (void)setAuthorizationAppSwitchReturnBlock:(void (^)(BTPayPalAccountNonce * _Nullable tokenizedAccount, NSError * _Nullable error))completionBlock; - (void)informDelegatePresentingViewControllerRequestPresent:(NSURL*) appSwitchURL; - (void)informDelegatePresentingViewControllerNeedsDismissal; /** Exposed for testing to create stubbed versions of `PayPalOneTouchAuthorizationRequest` and `PayPalOneTouchCheckoutRequest` */ @property (nonatomic, strong) BTPayPalRequestFactory *requestFactory; /** Exposed for testing to provide subclasses of PayPalOneTouchCore to stub class methods */ + (Class)payPalClass; + (void)setPayPalClass:(Class)payPalClass; /** Exposed for testing to provide a convenient way to inject custom return URL schemes */ @property (nonatomic, copy) NSString *returnURLScheme; /** Exposed for testing to get the instance of BTAPIClient after it has been copied by `copyWithSource:integration:` */ @property (nonatomic, strong, nullable) BTAPIClient *apiClient; /** Exposed for testing the clientMetadataId associated with this request */ @property (nonatomic, strong) NSString *clientMetadataId; /** Exposed for testing the intent associated with this request */ @property (nonatomic, strong) BTPayPalRequest *payPalRequest; /** Exposed for testing, the safariViewController instance used for the PayPal flow on iOS 9 and 10 */ @property (nonatomic, strong, nullable) SFSafariViewController *safariViewController API_AVAILABLE(ios(9.0)); /** Exposed for testing, the safariAuthenticationSession instance used for the PayPal flow on iOS >=11 */ @property (nonatomic, strong, nullable) SFAuthenticationSession *safariAuthenticationSession API_AVAILABLE(ios(11.0)); /** Exposed for testing, for determining if SFAuthenticationSession was started */ @property (nonatomic, assign) BOOL isSFAuthenticationSessionStarted; /** Exposed for testing, for disabling SFAuthenticationSession and use SFSafariViewController or Safari */ @property (nonatomic, assign) BOOL disableSFAuthenticationSession; /** Used to test the Future Payments flow by force */ - (void)authorizeAccountWithAdditionalScopes:(NSSet *)additionalScopes forceFuturePaymentFlow:(BOOL)forceFuturePaymentFlow completion:(void (^)(BTPayPalAccountNonce *, NSError *))completionBlock; + (nullable BTPayPalCreditFinancingAmount *)creditFinancingAmountFromJSON:(BTJSON *)amountJSON; + (nullable BTPayPalCreditFinancing *)creditFinancingFromJSON:(BTJSON *)creditFinancingOfferedJSON; @end NS_ASSUME_NONNULL_END