Class DocumentAnalysisResult
Inheritance
DocumentAnalysisResult
Assembly: Glitch9.AIDevKit.Provider.Microsoft.Azure.dll
Syntax
public class DocumentAnalysisResult : OcrDocument, ITextSource
Properties
|
Edit this page
View Source
ApiVersion
Required. API version used to produce this result.
Declaration
[JsonProperty("apiVersion")]
public string ApiVersion { get; set; }
Property Value
|
Edit this page
View Source
Content
Required. Concatenate string representation of all textual and visual elements in reading order.
Declaration
[JsonProperty("content")]
public string Content { get; set; }
Property Value
|
Edit this page
View Source
ContentFormat
Required. Format of the analyze result top-level content.
Declaration
[JsonProperty("contentFormat")]
public DocumentContentFormat ContentFormat { get; set; }
Property Value
|
Edit this page
View Source
Documents
Required. Extracted documents.
Declaration
[JsonProperty("documents")]
public AnalyzedDocument[] Documents { get; set; }
Property Value
|
Edit this page
View Source
Required. Extracted figures.
Declaration
[JsonProperty("figures")]
public DocumentFigure[] Figures { get; set; }
Property Value
|
Edit this page
View Source
KeyValuePairs
Required. Extracted key-value pairs.
Declaration
[JsonProperty("keyValuePairs")]
public DocumentKeyValuePair[] KeyValuePairs { get; set; }
Property Value
|
Edit this page
View Source
Languages
Required. Detected languages.
Declaration
[JsonProperty("languages")]
public DocumentLanguage[] Languages { get; set; }
Property Value
|
Edit this page
View Source
ModelId
Required. Document model ID used to produce this result.
Declaration
[JsonProperty("modelId")]
public string ModelId { get; set; }
Property Value
|
Edit this page
View Source
Pages
Required. Analyzed pages.
Declaration
[JsonProperty("pages")]
public DocumentPage[] Pages { get; set; }
Property Value
|
Edit this page
View Source
Paragraphs
Required. Extracted paragraphs.
Declaration
[JsonProperty("paragraphs")]
public DocumentParagraph[] Paragraphs { get; set; }
Property Value
|
Edit this page
View Source
Sections
Required. Extracted sections.
Declaration
[JsonProperty("sections")]
public DocumentSection[] Sections { get; set; }
Property Value
|
Edit this page
View Source
StringIndexType
Required. Method used to compute string offset and length.
Declaration
[JsonProperty("stringIndexType")]
public StringIndexType StringIndexType { get; set; }
Property Value
|
Edit this page
View Source
Styles
Required. Extracted font styles.
Declaration
[JsonProperty("styles")]
public DocumentStyle[] Styles { get; set; }
Property Value
|
Edit this page
View Source
Tables
Required. Extracted tables.
Declaration
[JsonProperty("tables")]
public DocumentTable[] Tables { get; set; }
Property Value
|
Edit this page
View Source
Text
Declaration
[JsonIgnore]
public override string Text { get; set; }
Property Value
Overrides
|
Edit this page
View Source
Warnings
Required. List of warnings encountered.
Declaration
[JsonProperty("warnings")]
public WarningInfo[] Warnings { get; set; }
Property Value
Implements
Extension Methods