-
public interface CloudXAdContains information about an ad that was loaded or displayed.
This object is passed to listener callbacks and provides details about the ad format, winning network, and impression-level revenue.
-
-
Method Summary
Modifier and Type Method Description abstract CloudXAdFormatgetAdFormat()The ad format (BANNER, MREC, INTERSTITIAL, REWARDED, NATIVE). abstract StringgetAdUnitId()The ad unit ID. abstract StringgetPlacement()Optional placement identifier set via setPlacement(). abstract StringgetNetworkName()Name of the ad network that won the auction. abstract StringgetNetworkPlacement()Network-specific placement ID, if available. abstract DoublegetRevenue()Bid-time revenue estimate in USD, set when the auction is won. Map<String, String>getAdValues()CloudXNativeAdgetNativeAd()-
-
Method Detail
-
getAdFormat
abstract CloudXAdFormat getAdFormat()
The ad format (BANNER, MREC, INTERSTITIAL, REWARDED, NATIVE).
-
getAdUnitId
abstract String getAdUnitId()
The ad unit ID.
-
getPlacement
abstract String getPlacement()
Optional placement identifier set via setPlacement().
-
getNetworkName
abstract String getNetworkName()
Name of the ad network that won the auction.
-
getNetworkPlacement
abstract String getNetworkPlacement()
Network-specific placement ID, if available.
-
getRevenue
abstract Double getRevenue()
Bid-time revenue estimate in USD, set when the auction is won.
-
getAdValues
Map<String, String> getAdValues()
-
getNativeAd
CloudXNativeAd getNativeAd()
-
-
-
-