Files
peko-ios/YuMi/Modules/YMMine/View/Noble/Protocol/XPNobleCenterProtocol.h
2025-03-21 16:19:07 +08:00

66 lines
2.2 KiB
Objective-C

//
// XPNobleCenterProtocol.h
// xplan-ios
//
// Created by GreenLand on 2021/12/28.
//
#import <Foundation/Foundation.h>
@class NobleCenterModel, UserInfoModel, NobleRechargeModel;
@protocol XPNobleCenterProtocol <NSObject>
@optional
///获取VIP信息成功
- (void)getNobleCenterInfoSuccess:(NobleCenterModel *)model;
///获取VIP信息成功
- (void)getNobleCenterDiamondSuccess:(NSString *)recordId;
///获取用户信息成功
- (void)onGetUserInfoSuccess:(UserInfoModel *)userInfo;
///获取VIP充值信息成功
- (void)onGetNobleRechargeDataSuccess:(NSArray *)list;
///请求充值id的状态成功
- (void)requestIAPRechargeOrderSuccess:(NSString *)orderId chargeProdId:(NSString *)chargeProdId uuid:(NSString *)uuid;
///请求充值账单失败
- (void)requestIAPRechargeOrderFail:(NSString *)message code:(NSInteger)code;
///二次校验成功
- (void)checkReceiptSuccess:(NSString *)transcationId;
///二次校验失败
- (void)checkReceiptFailWithCode:(NSInteger)code transcationId:(NSString *)transcationId;
///批量验证凭据成功
- (void)checkTranscationIdsSuccess;
///VIP 开关隐身进房成功
- (void)changeEnterHideSuccess:(BOOL)switchStatus;
///VIP 开关隐身进房失败
- (void)changeEnterHideFail;
///VIP 防关注开关修改成功
- (void)changePreventFollowSuccess:(BOOL)switchStatus;
///VIP 防关注开关修改失败
- (void)changePreventFollowFail;
///VIP 防跟随开关修改成功
- (void)changePreventTraceSuccess:(BOOL)switchStatus;
///VIP 防跟随开关修改失败
- (void)changePreventTraceFail;
///VIP 防被踢开关修改成功
- (void)changePreventKickSuccess:(BOOL)switchStatus;
///VIP 防被踢开关修改失败
- (void)changePreventKickFail;
///VIP 請勿打擾开关修改成功
- (void)changePrivateChatLimitSuccess:(BOOL)switchStatus;
///VIP 請勿打擾开关修改失败
- (void)changePrivateChatLimitFail;
///VIP 無痕瀏覽开关修改成功
- (void)changeVisitHideSuccess:(BOOL)switchStatus;
///VIP 無痕瀏覽开关修改失败
- (void)changeVisitHideLimitFail;
///钻石开通会员成功
-(void)openVipWithDiamondSuccess;
///钻石开通会员失败
-(void)openVipWithDiamondFail:(NSInteger)code;
//联系客服成功
-(void)getContactCustomerServiceSuccessWithUid:(NSString *)uid;
@end