YMMRevenueInfo class
The class contains immutable information about the revenue from in-app purchases.
Use the YMMMutableRevenueInfo class to change information about revenue.
The instance of the YMMRevenueInfo
class should be sent to the AppMetrica server using the reportRevenue
method of the YMMYandexMetrica
class.
Instance methods
-initWithPrice:currency: | Initializes the instance of the |
-initWithPrice:currency:quantity:productID:transactionID:receiptData:payload: | Initializes the instance of the |
-initWithPrice:currency: | Initializes the instance of the |
-initWithPrice:currency:quantity:productID:transactionID:receiptData:payload: | Initializes the instance of the |
Properties
currency | Currency code of the purchase in the ISO 4217 format. |
payload | Additional information to be passed about the purchase. |
price | Price. It can be negative, e.g. for refunds. |
productID | ID of the product purchased. The value can contain up to 200 characters. |
quantity | Quantity of products purchased. |
receiptData | Details about the in-app purchase order from App Store. |
transactionID | Information about the in-app purchase order from App Store. |
currency | Currency code of the purchase in the ISO 4217 format. |
payload | Additional information to be passed about the purchase. |
price | Price. It can be negative, e.g. for refunds. |
productID | ID of the product purchased. The value can contain up to 200 characters. |
quantity | Quantity of products purchased. |
receiptData | Details about the in-app purchase order from App Store. |
transactionID | Information about the in-app purchase order from App Store. |
Method descriptions
-initWithPrice:currency:
- (instancetype)initWithPrice:(double)price currency:(NSString *)currency
Initializes the instance of the YMMRevenueInfo
class for sending information about purchases.
price | Price. It can be negative, e.g. for refunds. |
currency | Currency code of the purchase in the ISO 4217 format. The value should contain 3 Latin letters in uppercase. Example: RUB .Note. If the value is not in the ISO 4217 format, the purchase is ignored. |
price | Price. It can be negative, e.g. for refunds. |
currency | Currency code of the purchase in the ISO 4217 format. The value should contain 3 Latin letters in uppercase. Example: RUB .Note. If the value is not in the ISO 4217 format, the purchase is ignored. |
Returns:
The instance of the YMMRevenueInfo
class.
-initWithPrice:currency:quantity:productID:transactionID:receiptData:payload:
- (instancetype)initWithPrice:(double)price
currency:(NSString *)currency
quantity:(NSUInteger)quantity
productID:(NSString *)productID
transactionID:(NSString *)transactionID
receiptData:(NSData *)receiptData
payload:(NSDictionary *)payload
Initializes the instance of the YMMRevenueInfo
class for sending information about purchases.
price | Price. It can be negative, e.g. for refunds. |
currency | Currency code of the purchase in the ISO 4217 format. The value should contain 3 Latin letters in uppercase. Example: RUB .Note. If the value is not in the ISO 4217 format, the purchase is ignored. |
quantity | Quantity of products purchased. It is used in the following formula:
Note. The value cannot be negative. If the value is equal to 0, the purchase is ignored. |
productID | ID of the product purchased. The value can contain up to 200 characters. |
transactionID | Information about the in-app purchase order from App Store. Must contain the This value should be passed along with receiptData to verify the transaction. |
receiptData | Details about the in-app purchase order from App Store. This value should be passed along with transactionID to verify the transaction. Example:
For more information, see Apple documentation. Note. You should get the receipt data before calling [[SKPaymentQueue defaultQueue] finishTransaction:transaction] . |
payload | Additional information to be passed about the purchase. For instance, it can be used for categorizing your products. It should contain the |
price | Price. It can be negative, e.g. for refunds. |
currency | Currency code of the purchase in the ISO 4217 format. The value should contain 3 Latin letters in uppercase. Example: RUB .Note. If the value is not in the ISO 4217 format, the purchase is ignored. |
quantity | Quantity of products purchased. It is used in the following formula:
Note. The value cannot be negative. If the value is equal to 0, the purchase is ignored. |
productID | ID of the product purchased. The value can contain up to 200 characters. |
transactionID | Information about the in-app purchase order from App Store. Must contain the This value should be passed along with receiptData to verify the transaction. |
receiptData | Details about the in-app purchase order from App Store. This value should be passed along with transactionID to verify the transaction. Example:
For more information, see Apple documentation. Note. You should get the receipt data before calling [[SKPaymentQueue defaultQueue] finishTransaction:transaction] . |
payload | Additional information to be passed about the purchase. For instance, it can be used for categorizing your products. It should contain the |
Returns:
The instance of the YMMRevenueInfo
class.
Property descriptions
currency
(nonatomic, copy, readonly) NSString *currency
Currency code of the purchase in the ISO 4217 format.
payload
(nonatomic, copy, readonly) NSDictionary *payload
Additional information to be passed about the purchase.
price
(nonatomic, assign, readonly) double price
Price. It can be negative, e.g. for refunds.
productID
(nonatomic, copy, readonly) NSString *productID
ID of the product purchased. The value can contain up to 200 characters.
quantity
(nonatomic, assign, readonly) NSUInteger quantity
Quantity of products purchased.
receiptData
(nonatomic, copy, readonly) NSData *receiptData
Details about the in-app purchase order from App Store.
transactionID
(nonatomic, copy, reaоdonly) NSString *transactionID
Information about the in-app purchase order from App Store.