AI-generated Key Takeaways
- 
          IMAAdLoadingErrorData is an object returned when the ads loader fails to load an ad. 
- 
          It contains the specific ad error that occurred during the loading process. 
- 
          It includes the user context that was provided in the initial ads request. 
IMAAdLoadingErrorData
@interface IMAAdLoadingErrorData : NSObjectAd error data that is returned when the ads loader fails to load the ad.
- 
                  
                  The ad error that occurred while loading the ad. DeclarationSwift var adError: IMAAdError { get }Objective-C @property (nonatomic, readonly) IMAAdError *_Nonnull adError;
- 
                  
                  The user context specified in the ads request. DeclarationSwift var userContext: Any? { get }Objective-C @property (nonatomic, readonly, nullable) id userContext;