12345678910111213141516171819 |
- //
- // ASPaypalManager.h
- // Asteria
- //
- // Created by xingyu on 2024/5/14.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface ASPaypalManager : NSObject
- - (void)checkoutPayWithMethodType:(NSString *)payType completion:(void (^ __nullable)(NSUInteger isSucess , id payData))completion;
- @end
- NS_ASSUME_NONNULL_END
|