Difference between revisions of "StoreKit:purchase"

From GiderosMobile
m (Text replacement - "<source" to "<syntaxhighlight")
Line 7: Line 7:
 
Process a payment request. When that transaction is complete or if a failure occurs, [[Special:MyLanguage/Event.TRANSACTION|Event.TRANSACTION]] event is dispatched.<br />
 
Process a payment request. When that transaction is complete or if a failure occurs, [[Special:MyLanguage/Event.TRANSACTION|Event.TRANSACTION]] event is dispatched.<br />
 
<br /></translate>
 
<br /></translate>
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
  StoreKit:purchase(productIdentifier,quantity)
 
  StoreKit:purchase(productIdentifier,quantity)
 
</source>
 
</source>

Revision as of 15:31, 13 July 2023


Available since: Gideros 2012.2.2
Class: StoreKit

Description


Process a payment request. When that transaction is complete or if a failure occurs, Event.TRANSACTION event is dispatched.

<syntaxhighlight lang="lua">

StoreKit:purchase(productIdentifier,quantity)

</source>

Parameters

productIdentifier: (string) A string used to identify a product that can be purchased from within your application.
quantity: (number, default = 1) The number of items the user wants to purchase. This value should be greater than or equal to 1.