minesweeper_game/Library/PackageCache/com.unity.services.analytics@f7e249983920/Runtime/Events/AdImpression/AdCompletionStatus.cs
2025-03-15 14:30:26 -04:00

19 lines
565 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace Unity.Services.Analytics
{
public enum AdCompletionStatus
{
/// <summary>
/// If the ad is fully viewed and therefore will count as an impression for the ad network.
/// </summary>
Completed = 0,
/// <summary>
/// If there is an option to exit the ad before generating revenue.
/// </summary>
Partial = 1,
/// <summary>
/// If the ad is not viewed at all (alternatively, dont record the adImpression event in.
/// </summary>
Incomplete = 2
}
}