Files
yinmeng-ios/xplan-ios/Main/Mine/Protocol/XPMineRechargeProtocol.h
2021-09-26 20:42:33 +08:00

26 lines
683 B
Objective-C

//
// XPMineRechargeProtocol.h
// xplan-ios
//
// Created by 冯硕 on 2021/9/24.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@class WalletInfoModel;
@protocol XPMineRechargeProtocol <NSObject>
///请求钱包余额信息
- (void)getUserWalletInfo:(WalletInfoModel *)balanceInfo;
///请求充值列表成功
- (void)requestRechargeListSucccess:(NSArray *)list;
///请求充值id的状态成功
- (void)requestIAPRechargeOrderSuccess:(NSString *)orderId chargeProdId:(NSString *)chargeProdId;
///二次校验成功
- (void)checkReceiptSuccess:(NSString *)transcationId;
///批量验证凭据成功
- (void)checkTranscationIdsSuccess;
@end
NS_ASSUME_NONNULL_END