Skip to content

AdValue

The AdValue class represents the monetary value earned from an ad impression.

Properties

currency_code / CurrencyCode

The ISO 4217 currency code associated with the revenue value (e.g., "USD").

var currency_code: String
public string CurrencyCode { get; }

precision / Precision

The precision type of the reported revenue.

var precision: int # Matches values from PrecisionType enum
public PrecisionType Precision { get; }

value_micros / ValueMicros

The monetary value of the ad impression in micro-units of the currency (e.g., $1.00 is represented as 1000000).

var value_micros: int
public long ValueMicros { get; }