Googly.DocumentAI.Model.GoogleCloudDocumentaiV1DocumentPageFormField (googly_document_ai v0.1.0)

Copy Markdown View Source

A form field detected on the page.

Attributes

  • corrected_key_text (type: String.t()) - Created for Labeling UI to export key text. If corrections were made to the text identified by the field_name.text_anchor, this field will contain the correction.
  • corrected_value_text (type: String.t()) - Created for Labeling UI to export value text. If corrections were made to the text identified by the field_value.text_anchor, this field will contain the correction.
  • field_name (type: Googly.DocumentAI.Model.GoogleCloudDocumentaiV1DocumentPageLayout.t()) - Layout for the FormField name. For example, Address, Email, Grand total, Phone number, etc.
  • field_value (type: Googly.DocumentAI.Model.GoogleCloudDocumentaiV1DocumentPageLayout.t()) - Layout for the FormField value.
  • name_detected_languages (type: list(Googly.DocumentAI.Model.GoogleCloudDocumentaiV1DocumentPageDetectedLanguage.t())) - A list of detected languages for name together with confidence.
  • provenance (type: Googly.DocumentAI.Model.GoogleCloudDocumentaiV1DocumentProvenance.t()) - The history of this annotation.
  • value_detected_languages (type: list(Googly.DocumentAI.Model.GoogleCloudDocumentaiV1DocumentPageDetectedLanguage.t())) - A list of detected languages for value together with confidence.
  • value_type (type: String.t()) - If the value is non-textual, this field represents the type. Current valid values are: - blank (this indicates the field_value is normal text) - unfilled_checkbox - filled_checkbox

Summary

Types

t()

@type t() :: %Googly.DocumentAI.Model.GoogleCloudDocumentaiV1DocumentPageFormField{
  corrected_key_text: String.t() | nil,
  corrected_value_text: String.t() | nil,
  field_name:
    Googly.DocumentAI.Model.GoogleCloudDocumentaiV1DocumentPageLayout.t() | nil,
  field_value:
    Googly.DocumentAI.Model.GoogleCloudDocumentaiV1DocumentPageLayout.t() | nil,
  name_detected_languages:
    [
      Googly.DocumentAI.Model.GoogleCloudDocumentaiV1DocumentPageDetectedLanguage.t()
    ]
    | nil,
  provenance:
    Googly.DocumentAI.Model.GoogleCloudDocumentaiV1DocumentProvenance.t() | nil,
  value_detected_languages:
    [
      Googly.DocumentAI.Model.GoogleCloudDocumentaiV1DocumentPageDetectedLanguage.t()
    ]
    | nil,
  value_type: String.t() | nil
}