Firstborn/Library/PackageCache/com.unity.ads@3.7.5/Runtime/Advertisement/Enums/PlacementState.cs

30 lines
778 B
C#
Raw Normal View History

2023-03-28 13:24:16 -04:00
namespace UnityEngine.Advertisements
{
/// <summary>
/// The enumerated states of a Unity Ads <a href="../manual/MonetizationPlacements.html">Placement</a>.
/// </summary>
public enum PlacementState
{
/// <summary>
/// The Placement is ready to show ads.
/// </summary>
Ready,
/// <summary>
/// The Placement is not available.
/// </summary>
NotAvailable,
/// <summary>
/// The Placement is disabled.
/// </summary>
Disabled,
/// <summary>
/// The Placement is waiting to be ready.
/// </summary>
Waiting,
/// <summary>
/// The Placement has no ads available to show.
/// </summary>
NoFill
}
}