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