namespace Unity.Cloud.UserReporting { /// /// Represents a user report event level. /// public enum UserReportEventLevel { /// /// Info. /// Info = 0, /// /// Success. /// Success = 1, /// /// Warning. /// Warning = 2, /// /// Error. /// Error = 3 } }