using System; using GoogleMobileAds.Api; namespace GoogleMobileAds.Common { public interface IInterstitialClient { event EventHandler OnAdLoaded; event EventHandler OnAdFailedToLoad; event EventHandler OnAdOpening; event EventHandler OnAdClosed; event EventHandler OnAdLeavingApplication; void CreateInterstitialAd(string adUnitId); void LoadAd(AdRequest request); bool IsLoaded(); void ShowInterstitial(); void DestroyInterstitial(); string MediationAdapterClassName(); } }