pub struct GoogleCloudDocumentaiV1DocumentEntityNormalizedValue {
pub address_value: Option<GoogleTypePostalAddress>,
pub boolean_value: Option<bool>,
pub date_value: Option<GoogleTypeDate>,
pub datetime_value: Option<GoogleTypeDateTime>,
pub float_value: Option<f32>,
pub integer_value: Option<i32>,
pub money_value: Option<GoogleTypeMoney>,
pub signature_value: Option<bool>,
pub text: Option<String>,
}Expand description
Parsed and normalized entity value.
This type is not used in any activity, and only used as part of another schema.
Fields§
§address_value: Option<GoogleTypePostalAddress>Postal address. See also: https://github.com/googleapis/googleapis/blob/master/google/type/postal_address.proto
boolean_value: Option<bool>Boolean value. Can be used for entities with binary values, or for checkboxes.
date_value: Option<GoogleTypeDate>Date value. Includes year, month, day. See also: https://github.com/googleapis/googleapis/blob/master/google/type/date.proto
datetime_value: Option<GoogleTypeDateTime>DateTime value. Includes date, time, and timezone. See also: https://github.com/googleapis/googleapis/blob/master/google/type/datetime.proto
float_value: Option<f32>Float value.
integer_value: Option<i32>Integer value.
money_value: Option<GoogleTypeMoney>Money value. See also: https://github.com/googleapis/googleapis/blob/master/google/type/money.proto
signature_value: Option<bool>A signature - a graphical representation of a person’s name, often used to sign a document.
text: Option<String>Optional. An optional field to store a normalized string. For some entity types, one of respective structured_value fields may also be populated. Also not all the types of structured_value will be normalized. For example, some processors may not generate float or integer normalized 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.
Trait Implementations§
Source§impl Clone for GoogleCloudDocumentaiV1DocumentEntityNormalizedValue
impl Clone for GoogleCloudDocumentaiV1DocumentEntityNormalizedValue
Source§fn clone(&self) -> GoogleCloudDocumentaiV1DocumentEntityNormalizedValue
fn clone(&self) -> GoogleCloudDocumentaiV1DocumentEntityNormalizedValue
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more