using System;
namespace AMWD.Net.Api.Cloudflare
{
///
/// Information about the processing time of a file.
///
public class RecordProcessTiming
{
///
/// When the file parsing ended.
///
[JsonProperty("end_time")]
public DateTime? EndTime { get; set; }
///
/// Processing time of the file in seconds.
///
[JsonProperty("process_time")]
public int? ProcessTime { get; set; }
///
/// When the file parsing started.
///
[JsonProperty("start_time")]
public DateTime? StartTime { get; set; }
}
}