lpw
2022-06-21 0778041d2a66cbe29f2e6e99040df86c4c817c45
commit | author | age
d1f6ab 1 //
H 2 //  WAPayChannel.h
3 //  WASdkIntfUI
4 //
5 //  Created by hank on 16/4/28.
6 //  Copyright © 2016年 GHW-T-01. All rights reserved.
7 //  支付渠道
8
9 #import <Foundation/Foundation.h>
10
11 @interface WAPayChannel : NSObject
12
13 @property (nonatomic, strong) NSString *channelProductId; // 支付渠道平台产品编号
14 @property (nonatomic, assign) NSInteger payChannelId;   // 支付方式编号
15 @property (nonatomic, strong) NSString *payChannelName; // 支付方式名称 如APPLE 、GOOGLE
16 @property (nonatomic, assign) NSInteger payMethod;      // 支付方式 1 native、2 webview
17 @property (nonatomic, assign) NSInteger status;         // 状态 -1 关闭 1 打开
18 @property (nonatomic, strong) NSString *logoUrl;        // 支付方式图标下载地址
19
20 @end