namespace UnityEngine.Advertisements { /// /// The enumerated causes of an ad failing to show. /// public enum UnityAdsShowError { /// /// The SDK is not properly initialized. /// NOT_INITIALIZED, /// /// The Placement was not ready to show an ad. /// NOT_READY, /// /// An error occured related to the media player. /// VIDEO_PLAYER_ERROR, /// /// Show failed due to invalid parameters. /// INVALID_ARGUMENT, /// /// An error occured due to the device's internet connection. /// NO_CONNECTION, /// /// An ad is already showing in the specified Placement. /// ALREADY_SHOWING, /// /// An internal Unity Ads service error occurred. /// INTERNAL_ERROR, /// /// An unknown error occurred. /// UNKNOWN } }