AI-generated Key Takeaways
- 
          IMAAdLoadingErrorData is an object containing data returned when the ads loader fails to load an ad. 
- 
          It includes the specific ad error that occurred during the loading process. 
- 
          It also provides the user context that was specified in the original 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;