cdts/xdts-ios 3/TreeHole/Code/Features/VIP/ApplePayService.h
2023-07-27 09:20:00 +08:00

29 lines
707 B
Objective-C

//
// ApplePayService.h
// Meet
//
// Created by mambaxie on 2021/3/1.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface ApplePayService : NSObject
+ (void)startVipPay:(NSString *)ID isFastBuy:(BOOL)isFastBuy source:(NSString *)source;
+ (void)sendStartVipPay:(NSString *)ID isFastBuy:(BOOL)isFastBuy source:(NSString *)source UserID:(NSString *)userID;
+ (void)startBottlePay:(NSString *)ID isFastBuy:(BOOL)isFastBuy bottleID:(int)bottleID;
+ (void)payProductWithId:(NSString *)ID orderId:(NSString *)orderId restoreProduct:(BOOL)restoreProduct isFastBuy:(BOOL)isFastBuy;
+ (instancetype)sharedInstance;
- (void)autoHandleUpdatedTransactions;
@end
NS_ASSUME_NONNULL_END