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