Class GoogleCloudDocumentaiV1DocumentEntityNormalizedValue
Parsed and normalized entity value.
Implements
Inherited Members
Namespace: Google.Apis.Document.v1.Data
Assembly: Google.Apis.Document.v1.dll
Syntax
public class GoogleCloudDocumentaiV1DocumentEntityNormalizedValue : IDirectResponseSchema
Properties
AddressValue
Postal address. See also: https://github.com/googleapis/googleapis/blob/master/google/type/postal_address.proto
Declaration
[JsonProperty("addressValue")]
public virtual GoogleTypePostalAddress AddressValue { get; set; }
Property Value
Type | Description |
---|---|
GoogleTypePostalAddress |
BooleanValue
Boolean value. Can be used for entities with binary values, or for checkboxes.
Declaration
[JsonProperty("booleanValue")]
public virtual bool? BooleanValue { get; set; }
Property Value
Type | Description |
---|---|
bool? |
DateValue
Date value. Includes year, month, day. See also: https://github.com/googleapis/googleapis/blob/master/google/type/date.proto
Declaration
[JsonProperty("dateValue")]
public virtual GoogleTypeDate DateValue { get; set; }
Property Value
Type | Description |
---|---|
GoogleTypeDate |
DatetimeValue
DateTime value. Includes date, time, and timezone. See also: https://github.com/googleapis/googleapis/blob/master/google/type/datetime.proto
Declaration
[JsonProperty("datetimeValue")]
public virtual GoogleTypeDateTime DatetimeValue { get; set; }
Property Value
Type | Description |
---|---|
GoogleTypeDateTime |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
FloatValue
Float value.
Declaration
[JsonProperty("floatValue")]
public virtual float? FloatValue { get; set; }
Property Value
Type | Description |
---|---|
float? |
IntegerValue
Integer value.
Declaration
[JsonProperty("integerValue")]
public virtual int? IntegerValue { get; set; }
Property Value
Type | Description |
---|---|
int? |
MoneyValue
Money value. See also: https://github.com/googleapis/googleapis/blob/master/google/type/money.proto
Declaration
[JsonProperty("moneyValue")]
public virtual GoogleTypeMoney MoneyValue { get; set; }
Property Value
Type | Description |
---|---|
GoogleTypeMoney |
Text
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.
Declaration
[JsonProperty("text")]
public virtual string Text { get; set; }
Property Value
Type | Description |
---|---|
string |