Skip to content

AdapterResponseInfo

The AdapterResponseInfo class contains metadata about an individual mediation ad network adapter's execution status in the mediation waterfall chain.

Properties

adapter_class_name / AdapterClassName

The class name of the mediation ad adapter (e.g. "com.google.ads.mediation.admob.AdMobAdapter").

var adapter_class_name: String
public string AdapterClassName { get; set; }

ad_source_id / AdSourceId

The identifier of the ad source.

var ad_source_id: String
public string AdSourceId { get; set; }

ad_source_name / AdSourceName

The name of the ad network/source (e.g. "AdMob" or "AppLovin").

var ad_source_name: String
public string AdSourceName { get; set; }

ad_source_instance_id / AdSourceInstanceId

The instance ID of the ad source.

var ad_source_instance_id: String
public string AdSourceInstanceId { get; set; }

ad_source_instance_name / AdSourceInstanceName

The name of the ad source instance.

var ad_source_instance_name: String
public string AdSourceInstanceName { get; set; }

ad_unit_mapping / AdUnitMapping

A dictionary containing mapping parameters set in the AdMob console for this specific ad unit.

var ad_unit_mapping: Dictionary
public Dictionary AdUnitMapping { get; set; }

ad_error / AdError

The error metadata if this adapter failed to load or serve the ad, or null if the load succeeded.

var ad_error: AdError
public AdError AdError { get; set; }

latency_millis / LatencyMillis

The latency of the adapter request in milliseconds.

var latency_millis: int
public int LatencyMillis { get; set; }