AATFullscreenPlacementDelegate

@objc public protocol AATFullscreenPlacementDelegate {
    /// The placement has loaded a new ad
    func aatHaveAd(placement: AATPlacement)

    /// The placement has no ad available
    func aatNoAd(placement: AATPlacement)

    /// Ad has been displayed on the screen
    func aatPauseForAd(placement: AATPlacement)

    /// Back to the app
    func aatResumeAfterAd(placement: AATPlacement)
}

Last updated