RTBFullscreenAd

class RTBFullscreenAd(context: Context) {

    /**
     * Delegate that will be notified with fullscreen ad events
     */
    var delegate: RTBFullscreenDelegate? = null

    /**
     *  Loads a new ad with given fullscreen request configuration.
     *  Returns true if the ad will start loading, false otherwise.
     */
    fun load(configuration: RTBFullscreenRequestConfiguration): Boolean

    /**
     * Show the loaded fullscreen ad.
     * Returns true if the ad will show, false otherwise.
     */
    fun show(activity: Activity): Boolean 
}

Last updated