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