Difference between revisions of "Event.REQUEST PRODUCTS COMPLETE"
(Created page with "__NOTOC__ '''Available since:''' Gideros 2012.2.2<br/> === Description === This event is dispatched after the method `StoreKit:requestProducts` is called and completed request...") |
|||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
'''Available since:''' Gideros 2012.2.2<br/> | '''Available since:''' Gideros 2012.2.2<br/> | ||
+ | '''Value:''' requestProductsComplete<br/> | ||
=== Description === | === Description === | ||
This event is dispatched after the method `StoreKit:requestProducts` is called and completed request. It provides information about products available. | This event is dispatched after the method `StoreKit:requestProducts` is called and completed request. It provides information about products available. | ||
+ | === Parameters === | ||
+ | '''error''': (number) error code if the request failed to execute<br/> | ||
+ | '''errorDescription''': (string) error description if the request failed to execute<br/> | ||
+ | '''invalidProductIdentifiers''': (table) array of product identifier strings that were not recognized by the Apple App Store<br/> | ||
+ | '''products''': (table) array of products where each element is a table which contains the product information<br/> | ||
+ | '''products[].title''': (string) localized name of the product<br/> | ||
+ | '''products[].description''': (string) localized description of the product<br/> | ||
+ | '''products[].price''': (price) cost of the product in the local currency<br/> | ||
+ | '''products[].productIdentifier''': (string) string that identifies the product in the Apple App Store<br/> |
Revision as of 10:46, 23 August 2018
Available since: Gideros 2012.2.2
Value: requestProductsComplete
Description
This event is dispatched after the method `StoreKit:requestProducts` is called and completed request. It provides information about products available.
Parameters
error: (number) error code if the request failed to execute
errorDescription: (string) error description if the request failed to execute
invalidProductIdentifiers: (table) array of product identifier strings that were not recognized by the Apple App Store
products: (table) array of products where each element is a table which contains the product information
products[].title: (string) localized name of the product
products[].description: (string) localized description of the product
products[].price: (price) cost of the product in the local currency
products[].productIdentifier: (string) string that identifies the product in the Apple App Store