lipengwei
2019-09-26 11ca32f6a726d7fc015e8206cff31bd0b1a4f556
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//
//  WAChannelProduct.h
//  WASdkIntf
//
//  Created by LPW on 2019/9/17.
//  Copyright © 2019 GHW-T-01. All rights reserved.
//
 
#import <Foundation/Foundation.h>
 
NS_ASSUME_NONNULL_BEGIN
 
@interface WAChannelProduct : NSObject
@property(nonatomic, strong) NSString *channel;           //渠道名称
@property(nonatomic, strong) NSString *productIdentifier; //平台商品id
@property(nonatomic, strong) NSString *localeCurrencyCode; //当前币种code USD 、CNY
@property(nonatomic, strong) NSString *localFormattedPrice;//格式化价格 $999.99  ¥6,498.00
@property(nonatomic, strong) NSDecimalNumber * price ;    //价格 999.99         6498
 
@end
 
NS_ASSUME_NONNULL_END