getAdInfo
Overview
After loading an ad, allows to access the loaded ad information by accessing the adInfo property of the fullscreen or rewarded video placement.
Note: To get ad info property of the native or in-feed ad, please listen to onGetAdInfo event.
Syntax
getAdInfo(placementName, callback)
placementName (REQUIRED)
string. Unique name of placement. The same name will be used in addapptr.com account.
callback(REQUIRED)
Callback<RNAatkitAdInfo>. Used to provide the function call result to JavaScript.
Examples
RNAatkit.getAdInfo("FullscreenAd", (adInfo) => {
console.log("FullscreenAd AdInfo, price: " + adInfo.price + ", currencyCode: " + adInfo.currencyCode + ", precision: " + adInfo.precision);
});
Last updated