AdRevenueInfo class
The class contains immutable information about advertising revenue.
Use the MutableAdRevenueInfo class to change information about revenue.
The instance of the AdRevenueInfo
class should be passed to the AppMetrica server using the reportAdRevenue method of the AppMetrica class.
Instance methods
Initializes the instance of the |
Properties
The amount of money received from advertising revenue. Can't be negative. |
|
The currency in which |
|
Ad type. See possible values in AdType. |
|
Advertising network. The maximum length is 100 characters. If the value exceeds this limit, it will be truncated by AppMetrica. |
|
Ad unit ID. The maximum length is 100 characters. If the value exceeds this limit, it will be truncated by AppMetrica. |
|
Ad unit name. The maximum length is 100 characters. If the value exceeds this limit, it will be truncated by AppMetrica. |
|
Ad placement ID. The maximum length is 100 characters. If the value exceeds this limit, it will be truncated by AppMetrica. |
|
Ad placement name. The maximum length is 100 characters. If the value exceeds this limit, it will be truncated by AppMetrica. |
|
Accuracy. For example, «publisher_defined» or «estimated». The maximum length is 100 characters. If the value exceeds this limit, it will be truncated by AppMetrica. |
|
Accuracy. For example, «publisher_defined» or «estimated». Arbitrary payload: Additional information presented as key-value pairs. The maximum size is 30 KB. If the value exceeds this limit, it will be truncated by AppMetrica. |
Method descriptions
init(adRevenue:currency:)
init(adRevenue: NSDecimalNumber, currency: String)
Initializes the instance of the AdRevenueInfo
class for sending information about advertising revenue.
Parameters:
|
The amount of money received from advertising revenue. Can't be negative. |
|
The currency in which |
Returns:
The AdRevenueInfo
class instance.
Property descriptions
adRevenue
var adRevenue: NSDecimalNumber { get }
The amount of money received from advertising revenue. Can't be negative.
currency
var currency: String { get }
The currency in which adRevenue
is represented. Must be in ISO-4217 format.
adType
var adType: AdType { get }
Ad type. See possible values in AdType.
adNetwork
var adNetwork: String? { get }
Yandex Advertising Network. The maximum length is 100 characters. If the value exceeds this limit, it will be truncated by AppMetrica.
adUnitID
var adUnitID: String? { get }
Ad block ID. The maximum length is 100 characters. If the value exceeds this limit, it will be truncated by AppMetrica.
adUnitName
var adUnitName: String? { get }
Ad unit name. The maximum length is 100 characters. If the value exceeds this limit, it will be truncated by AppMetrica.
adPlacementID
var adPlacementID: String? { get }
Ad placement ID. The maximum length is 100 characters. If the value exceeds this limit, it will be truncated by AppMetrica.
adPlacementName
var adPlacementName: String? { get }
Ad placement name. The maximum length is 100 characters. If the value exceeds this limit, it will be truncated by AppMetrica.
precision
var precision: String? { get }
Accuracy. For example, publisher_defined
or estimated
. The maximum length is 100 characters. If the value exceeds this limit, it will be truncated by AppMetrica.
payload
var payload: [String: String]? { get }
Accuracy. For example, publisher_defined
or estimated
. Arbitrary payload: Additional information presented as key-value pairs. The maximum size is 30 KB. If the value exceeds this limit, it will be truncated by AppMetrica.