namespace UnityEngine.Advertisements
{
///
/// An enum passed to ShowOptions.resultCallback after the ad has finished, indicating the result.
///
public enum ShowResult
{
///
/// Indicates that the ad failed to display.
///
Failed,
///
/// Indicates that the player did not allow the ad to complete.
///
Skipped,
///
/// Indicates that the player watched the ad to completion.
///
Finished
}
}