namespace Unity.Cloud.UserReporting.Plugin
{
///
/// Provides static methods for parsing user reports.
///
public static class UnityUserReportParser
{
#region Static Methods
///
/// Parses a user report.
///
/// The JSON.
/// The user report.
public static UserReport ParseUserReport(string json)
{
return SimpleJson.SimpleJson.DeserializeObject(json);
}
///
/// Parses a user report list.
///
/// The JSON.
/// The user report list.
public static UserReportList ParseUserReportList(string json)
{
return SimpleJson.SimpleJson.DeserializeObject(json);
}
#endregion
}
}