Googly. DocumentAI. Model. GoogleCloudDocumentaiV1DocumentEntityNormalizedValue
(googly_document_ai v0.1.0)
Copy Markdown
View Source
Parsed and normalized entity value.
Attributes
-
address_value(type:Googly.DocumentAI.Model.GoogleTypePostalAddress.t()) - Postal address. See also: https://github.com/googleapis/googleapis/blob/master/google/type/postal_address.proto -
boolean_value(type:boolean()) - Boolean value. Can be used for entities with binary values, or for checkboxes. -
date_value(type:Googly.DocumentAI.Model.GoogleTypeDate.t()) - Date value. Includes year, month, day. See also: https://github.com/googleapis/googleapis/blob/master/google/type/date.proto -
datetime_value(type:Googly.DocumentAI.Model.GoogleTypeDateTime.t()) - DateTime value. Includes date, time, and timezone. See also: https://github.com/googleapis/googleapis/blob/master/google/type/datetime.proto -
float_value(type:number()) - Float value. -
integer_value(type:integer()) - Integer value. -
money_value(type:Googly.DocumentAI.Model.GoogleTypeMoney.t()) - Money value. See also: https://github.com/googleapis/googleapis/blob/master/google/type/money.proto -
signature_value(type:boolean()) - A signature - a graphical representation of a person's name, often used to sign a document. -
text(type:String.t()) - Optional. An optional field to store a normalized string. For some entity types, one of respectivestructured_valuefields may also be populated. Also not all the types ofstructured_valuewill be normalized. For example, some processors may not generatefloatorintegernormalized text by default. Below are sample formats mapped to structured values. - Money/Currency type (money_value) is in the ISO 4217 text format. - Date type (date_value) is in the ISO 8601 text format. - Datetime type (datetime_value) is in the ISO 8601 text format.
Summary
Types
@type t() :: %Googly.DocumentAI.Model.GoogleCloudDocumentaiV1DocumentEntityNormalizedValue{ address_value: Googly.DocumentAI.Model.GoogleTypePostalAddress.t() | nil, boolean_value: boolean() | nil, date_value: Googly.DocumentAI.Model.GoogleTypeDate.t() | nil, datetime_value: Googly.DocumentAI.Model.GoogleTypeDateTime.t() | nil, float_value: number() | nil, integer_value: integer() | nil, money_value: Googly.DocumentAI.Model.GoogleTypeMoney.t() | nil, signature_value: boolean() | nil, text: String.t() | nil }