1234567891011121314151617181920212223 |
- //
- // ASPaypalManager.h
- // Asteria
- //
- // Created by xingyu on 2024/5/14.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- #define Chectout_Pay_Paypal_Url BaseRequestrUrl(@"rewrite/paypal/getPaypalToken")
- @interface ASPaypalManager : NSObject
- + (instancetype)sharedInstance;
- - (void)checkoutPayWithMethodType:(NSString *)payType completion:(void (^ __nullable)(NSUInteger isSucess , id payData))completion;
- @end
- NS_ASSUME_NONNULL_END
|