hank
2017-09-04 aea85e78b769b67143d1425de6d431b6143066e9
commit | author | age
dcdc07 1 //
W 2 //  GHWSdkIapProduct.h
3 //  GHWSdk
4 //
5 //  Created by GHW-T-01 on 15/5/28.
6 //  Copyright (c) 2015年 Wuyx. All rights reserved.
7 //
8
9 #import <Foundation/Foundation.h>
10 #import "WAPayChannel.h"
11 /*!
12  @discussion WAIapProduct 商品类
13  - - -
14  */
15 @interface WAIapProduct : NSObject
16 @property(nonatomic, strong) NSString *localizedDescription NS_AVAILABLE_IOS(3_0);
17
18 @property(nonatomic, strong) NSString *localizedTitle NS_AVAILABLE_IOS(3_0);
19
20 @property(nonatomic, strong) NSDecimalNumber *price NS_AVAILABLE_IOS(3_0);
21
1417b8 22 //@property(nonatomic, strong) NSLocale *priceLocale NS_AVAILABLE_IOS(3_0);
dcdc07 23
W 24 @property(nonatomic, strong) NSString *productIdentifier NS_AVAILABLE_IOS(3_0);
25
26 // YES if this product has content downloadable using SKDownload
1417b8 27 //@property(nonatomic) BOOL downloadable NS_AVAILABLE_IOS(6_0);
dcdc07 28
W 29 // Sizes in bytes (NSNumber [long long]) of the downloads available for this product
1417b8 30 //@property(nonatomic, strong) NSArray<NSNumber *> *downloadContentLengths NS_AVAILABLE_IOS(6_0);
dcdc07 31
W 32 // Version of the downloadable content
1417b8 33 //@property(nonatomic, strong) NSString *downloadContentVersion NS_AVAILABLE_IOS(6_0);
dcdc07 34 // payment method
W 35 @property(nonatomic, strong) NSArray<WAPayChannel *> *payChannels NS_AVAILABLE_IOS(6_0);
36
37 @end