lpw
2022-06-21 0778041d2a66cbe29f2e6e99040df86c4c817c45
commit | author | age
d1f6ab 1 //
H 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
47f8fd 22 //@property(nonatomic, strong) NSLocale *priceLocale NS_AVAILABLE_IOS(3_0);
d1f6ab 23
H 24 @property(nonatomic, strong) NSString *productIdentifier NS_AVAILABLE_IOS(3_0);
25
26 // YES if this product has content downloadable using SKDownload
47f8fd 27 //@property(nonatomic) BOOL downloadable NS_AVAILABLE_IOS(6_0);
d1f6ab 28
H 29 // Sizes in bytes (NSNumber [long long]) of the downloads available for this product
47f8fd 30 //@property(nonatomic, strong) NSArray<NSNumber *> *downloadContentLengths NS_AVAILABLE_IOS(6_0);
d1f6ab 31
H 32 // Version of the downloadable content
47f8fd 33 //@property(nonatomic, strong) NSString *downloadContentVersion NS_AVAILABLE_IOS(6_0);
d1f6ab 34 // payment method
H 35 @property(nonatomic, strong) NSArray<WAPayChannel *> *payChannels NS_AVAILABLE_IOS(6_0);
36
37 @end