lpw
2022-02-15 79188b8f776565da8b5ae59826e9e08fe28630aa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
//
//  WAPayProxy.h
//  WASdkIntfUI
//
//  Created by GHW-T-01 on 16/3/1.
//  Copyright © 2016年 GHW-T-01. All rights reserved.
//
 
#import <Foundation/Foundation.h>
#import "WAIPay.h"
@class WAIapProduct,WAIapResult,WAChannelProduct;
 
/*!
 @discussion 查询商品库存协议
 - - -
 */
@protocol WAInventoryDelegate <NSObject>
@required
/*!
 @abstract 查询成功
 @param Inventory 是一个数组,保存着WAIapProduct类型的实例
 */
-(void)queryInventoryDidCompleteWithResult:(NSArray<WAIapProduct *>*)Inventory;
/*!
 @abstract 查询失败
 @param error 错误
 */
-(void)queryInventoryDidFailWithError:(NSError*)error;
@end
/*!
 @discussion 支付协议
 - - -
 */
@protocol WAPaymentDelegate <NSObject>
/*!
 @abstract 支付成功
 @param iapResult 支付结果
 @param platform 支付平台
 */
-(void)paymentDidCompleteWithResult:(WAIapResult*)iapResult andPlatform:(NSString*)platform;
/*!
 @abstract 支付失败
 @param error 错误
 @param platform 支付平台
 */
-(void)paymentDidFailWithError:(NSError*)error andPlatform:(NSString*)platform;
@end
 
/*!
 @discussion WAPayProxy 是支付模块的代理类。
 - - -
 */
@interface WAPayProxy : NSObject
/*!
 @abstract 应用内支付初始化
 */
+(void)init4Iap;
/*!
 @abstract 查询商品列表调用方法
 @param delegate 委托
 */
+(void)queryInventoryWithDelegate:(id<WAInventoryDelegate>)delegate;
 
/*!
@abstract 查询渠道商品调用方法
@param callBackBlock 回调
*/
+ (void)queryChannelProduct:(NSString *)channel
              callBackBlock:(void(^)(NSArray <WAChannelProduct *>*channelProductsArray,NSError *error))callBackBlock;
 
 
/*!
 @abstract 支付某个商品
 @param productId 商品id
 @param extInfo 扩展信息
 @param delegate 委托
 */
+(void)payWithProductId:(NSString*)productId extInfo:(NSString*)extInfo delegate:(id<WAPaymentDelegate>)delegate;
/*!
 @abstract 查询是否支持支付
 @return bool 是否支持支付
 */
+(BOOL)isPayServiceAvailable;
 
+(void)payLog:(NSString *)logInfo;
 
 
 
@end