// // SKProduct.h // StoreKit // // Copyright 2009 Apple, Inc. All rights reserved. // #import #import NS_CLASS_AVAILABLE(10_7, NA) @interface SKProduct : NSObject { @private id _internal; } @property(readonly) NSString *localizedDescription; @property(readonly) NSString *localizedTitle; @property(readonly) NSDecimalNumber *price; @property(readonly) NSLocale *priceLocale; @property(readonly) NSString *productIdentifier; // YES if the product's assets are hosted by the App Store. NO otherwise. @property(readonly) BOOL downloadable; // Version string of the product @property(readonly) NSString* contentVersion; // An array of filesizes of the assets associated with the product @property(readonly) NSArray* contentLengths; @end