// // YMMineRechargePresenter.h // YUMI // // Created by YUMI on 2021/9/24. // #import "BaseMvpPresenter.h" NS_ASSUME_NONNULL_BEGIN @interface XPMineRechargePresenter : BaseMvpPresenter /// 获取钱包信息 - (void)getUserWalletInfo; /// 请求内购列表 /// @param channel 目前是8 - (void)requestRechargeListWithChannel:(NSString *)channel; /// 获取充值的订单编号 /// @param chargeProdId 苹果服务器的充值 的id - (void)requestIAPRechargeOrderWithChargeProdId:(NSString *)chargeProdId; /// 充值成功二次验证 /// @param receipt 凭据 /// @param orderId 订单编号 /// @param transcationId 商品id - (void)checkReceiptWithData:(NSString *)receipt orderId:(NSString *)orderId transcationId:(NSString *)transcationId; /// 批量验证内购掉单 /// @param transcations 凭据的数组 - (void)checkTranscationIds:(NSArray *)transcations; //充值banner位 -(void)getBannerList; //联系客服 -(void)getContactCustomerService; @end NS_ASSUME_NONNULL_END