namespace UnityEngine.Advertisements { /// /// The enumerated causes of an ad failing to load. /// public enum UnityAdsLoadError { /// /// The SDK is not properly initialized. /// INITIALIZE_FAILED, /// /// An internal Unity Ads service error occurred. /// INTERNAL_ERROR, /// /// Load failed due to invalid parameters. /// INVALID_ARGUMENT, /// /// No ad content was available to load. /// NO_FILL, /// /// The ad did not load within a specified timeframe. /// TIMEOUT, UNKNOWN } }