AMAMutableRevenueInfo class
The mutable version of the AMARevenueInfo class with information about purchases.
The instance of the AMAMutableRevenueInfo
class must be sent to the AppMetrica server using the reportRevenue method of the AMAAppMetrica class.
Properties
Additional information to be passed about the purchase. For instance, it can be used for categorizing your products. |
|
ID of the product purchased. The value can contain up to 200 characters. |
|
Quantity of products purchased. |
|
Details about the in-app purchase order from App Store. This property is used for validating purchases in the app. |
|
Transaction ID transactionIdentifier from the SKPaymentTransaction class. This property is used for validating purchases in the app. |
Property descriptions
payload
(nonatomic, copy) NSDictionary *payload
Additional information to be passed about the purchase. For instance, it can be used for categorizing your products.
It should contain the NSDictionary
object that can be converted to valid JSON. The maximum size of the value is 30 KB.
productID
(nonatomic, copy) NSString *productID
ID of the product purchased. The value can contain up to 200 characters.
quantity
(nonatomic, assign) NSUInteger quantity
Quantity of products purchased.
It is used in the following formula:
Revenue = quantity * price.
Note
The value cannot be negative. If the value is equal to 0, the purchase is ignored.
receiptData
(nonatomic, copy) NSData *receiptData
Details about the in-app purchase order from App Store. This property is used for validating purchases in the app. For more information, see the Apple documentation.
See the example of getting receiptData
in the Sending Revenue section.
Alert
The value must be received before invoking [[SKPaymentQueue defaultQueue] finishTransaction:transaction]
and transmitted along with transactionID.
transactionID
(nonatomic, copy) NSString *transactionID
Transaction ID transactionIdentifier from the SKPaymentTransaction class. This property is used for validating purchases in the app.
See the example of getting transactionIdentifier
in the Sending Revenue section.
Alert
This value should be passed along with receiptData.