AdCompletionStatus.cs 565 B

123456789101112131415161718
  1. namespace Unity.Services.Analytics
  2. {
  3. public enum AdCompletionStatus
  4. {
  5. /// <summary>
  6. /// If the ad is fully viewed and therefore will count as an impression for the ad network.
  7. /// </summary>
  8. Completed = 0,
  9. /// <summary>
  10. /// If there is an option to exit the ad before generating revenue.
  11. /// </summary>
  12. Partial = 1,
  13. /// <summary>
  14. /// If the ad is not viewed at all (alternatively, don’t record the adImpression event in.
  15. /// </summary>
  16. Incomplete = 2
  17. }
  18. }