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