VirtualGoodCategory Reference
Inherits From: LiObject
Declared In: VirtualGoodCategory.h
Overview
The VirtualGoodCategory class is provided for organizing VirtualGood items. Categories are managed from the developer web console, where you can add, edit, and remove categories, as well as assign categories to your virtual goods.
NOTE: You'll notice that only properties are defined in this document. The only action available to perform with VirtualGoodCategory is to fetch an array of available categories you've defined for your application. To do so, use the IAP API's getVirtualGoodCategoriesWithBlock: method.
Properties
virtualGoodCategoryID
The item's unique ID value
@property (nonatomic, retain) NSString *virtualGoodCategoryID;
Discussion:
This is the instance's unique ID value as recorded in the Applicasa datastore. It is set by the datastore when you create a new VirtualGoodCategory item via the developer's web console. This property is not editable.
virtualGoodCategoryName
The item's display name.
@property (nonatomic, retain) NSString *virtualGoodCategoryName;
Discussion:
An NSString value for the item's name. You'd most often use this value to display the item's name within your app. Can be edited from the web console.
virtualGoodCategoryLastUpdate
A datetime value of the last time the item was updated from the web console.
@property (nonatomic, retain, readonly) NSDate *virtualGoodCategoryLastUpdate;
Discussion:
This property is automatically generated and updated from the web console.