SASBiddingManagerDelegate
Objective-C
@protocol SASBiddingManagerDelegate <NSObject>Swift
protocol SASBiddingManagerDelegate : NSObjectProtocolSASBiddingManager delegate.
- 
                    
                    Called when the bidding manager has loaded an ad response successfully. Note The ad response can be displayed using an instance of SASBannerView or SASInterstitialManager depending on the requestion bidding ad format type. DeclarationObjective-C - (void)biddingManager:(nonnull SASBiddingManager *)biddingManager didLoadWithBiddingAdResponse: (nonnull SASBiddingAdResponse *)biddingAdResponse;Swift func biddingManager(_ biddingManager: SASBiddingManager, didLoadWith biddingAdResponse: SASBiddingAdResponse)ParametersbiddingManagerThe instance of SASBiddingManager calling the delegate. biddingAdResponseThe ad response loaded by the bidding manager. 
- 
                    
                    Called when the bidding manager fails to load the ad. DeclarationObjective-C - (void)biddingManager:(nonnull SASBiddingManager *)biddingManager didFailToLoadWithError:(nonnull NSError *)error;Swift func biddingManager(_ biddingManager: SASBiddingManager, didFailToLoad error: any Error)ParametersbiddingManagerThe instance of SASBiddingManager calling the delegate. errorThe error preventing the bidding ad from being loaded. 
