lpw
2022-02-15 79188b8f776565da8b5ae59826e9e08fe28630aa
commit | author | age
dcdc07 1 //
W 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