Container for all OCR, page, and document results as well as the overall status.

/// <summary>
/// AnalyzeFormResult class.
/// </summary>
public class AnalyzeFormResult
{
	public string Status { get; set; }
	public DateTime CreatedDateTime { get; set; }
	public DateTime LastUpdatedDateTime { get; set; }
	public AnalyzeResult AnalyzeResult { get; set; }
}