Share via


FormDocumentReport Constructors

Definition

Overloads

FormDocumentReport()

Initializes a new instance of the FormDocumentReport class.

FormDocumentReport(String, Nullable<Int32>, IList<String>, String)

Initializes a new instance of the FormDocumentReport class.

FormDocumentReport()

Initializes a new instance of the FormDocumentReport class.

public FormDocumentReport ();
Public Sub New ()

Applies to

FormDocumentReport(String, Nullable<Int32>, IList<String>, String)

Initializes a new instance of the FormDocumentReport class.

public FormDocumentReport (string documentName = default, int? pages = default, System.Collections.Generic.IList<string> errors = default, string status = default);
new Microsoft.Azure.CognitiveServices.FormRecognizer.Models.FormDocumentReport : string * Nullable<int> * System.Collections.Generic.IList<string> * string -> Microsoft.Azure.CognitiveServices.FormRecognizer.Models.FormDocumentReport
Public Sub New (Optional documentName As String = Nothing, Optional pages As Nullable(Of Integer) = Nothing, Optional errors As IList(Of String) = Nothing, Optional status As String = Nothing)

Parameters

documentName
String

Reference to the data that the report is for.

pages
Nullable<Int32>

Total number of pages trained on.

errors
IList<String>

List of errors per page.

status
String

Status of the training operation. Possible values include: 'success', 'partialSuccess', 'failure'

Applies to