AI-generated Key Takeaways
-
The
ResponseInfoobject provides debugging and logging information about a successfully loaded ad. -
Each ad format class has a
responseInfoproperty populated after the ad loads. -
ResponseInfocontains properties such asadapterResponses,loadedAdapterResponseInfo,mediationAdapterClassName,responseId, andresponseExtras. -
AdapterResponseInfowithinResponseInfocontains metadata for each adapter in the ad response for debugging waterfall mediation and bidding execution. -
AdapterResponseInfoincludes properties likeadapterClassName,credentials,adError,latencyMillis, anddescription.
For debugging and logging purposes, successfully loaded ads provide a ResponseInfo
object. This object contains information about the ad it loaded.
Each ad format class has a property responseInfo
which is populated after
it loads.
Properties on the ResponseInfo
include:
adapterResponses
AdapterResponseInfo
containing metadata for
each adapter included in the ad response. Can be used to debug the
waterfall mediation and bidding execution. The order of the list matches
the order of the mediation waterfall for this ad request. See Adapter Response Info for more information.
loadedAdapterResponseInfo
AdapterResponseInfo
corresponding to the adapter
that loaded the ad.mediationAdapterClassName
responseId
responseExtras
-
mediation_group_name: The name of the mediation group -
mediation_ab_test_name: The name of the mediation A/B test , if applicable -
mediation_ab_test_variant: The variant used in the mediation A/B test, if applicable
Adapter Response Info
AdapterResponseInfo
contains metadata for each adapter included in the ad
response which can be used to debug the waterfall mediation and bidding
execution. The order of the list matches the order of the mediation waterfall
for the ad request.
For each ad network, AdapterResponseInfo
provides the following
properties:
| Property | Description |
|---|---|
adapterClassName
|
A class name that identifies the ad network. |
credentials
|
A string description of adapter credentials specified in the AdMob UI. |
adError
|
Error associated with the request to the network. Null if the network successfully loaded an ad or if the network was not attempted. |
latencyMillis
|
Amount of time the ad network spent loading an ad. 0
if the
network was not attempted. |
description
|
A log friendly string version of the AdapterResponseInfo. |

