Class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta2DocumentEntityNormalizedValue

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/documentai_v1beta3/classes.rb,
generated/google/apis/documentai_v1beta3/representations.rb,
generated/google/apis/documentai_v1beta3/representations.rb

Overview

Parsed and normalized entity value.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDocumentaiV1beta2DocumentEntityNormalizedValue

Returns a new instance of GoogleCloudDocumentaiV1beta2DocumentEntityNormalizedValue.



2328
2329
2330
# File 'generated/google/apis/documentai_v1beta3/classes.rb', line 2328

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#address_valueGoogle::Apis::DocumentaiV1beta3::GoogleTypePostalAddress

Represents a postal address, e.g. for postal delivery or payments addresses. Given a postal address, a postal service can deliver items to a premise, P.O. Box or similar. It is not intended to model geographical locations (roads, towns, mountains). In typical usage an address would be created via user input or from importing existing data, depending on the type of process. Advice on address input / editing: - Use an i18n-ready address widget such as https:// github.com/google/libaddressinput) - Users should not be presented with UI elements for input or editing of fields outside countries where that field is used. For more guidance on how to use this schema, please see: https://support. google.com/business/answer/6397478 Corresponds to the JSON property addressValue



2281
2282
2283
# File 'generated/google/apis/documentai_v1beta3/classes.rb', line 2281

def address_value
  @address_value
end

#date_valueGoogle::Apis::DocumentaiV1beta3::GoogleTypeDate

Represents a whole or partial calendar date, such as a birthday. The time of day and time zone are either specified elsewhere or are insignificant. The date is relative to the Gregorian Calendar. This can represent one of the following: * A full date, with non-zero year, month, and day values * A month and day value, with a zero year, such as an anniversary * A year on its own, with zero month and day values * A year and month value, with a zero day, such as a credit card expiration date Related types are google.type.TimeOfDay and google.protobuf.Timestamp. Corresponds to the JSON property dateValue



2293
2294
2295
# File 'generated/google/apis/documentai_v1beta3/classes.rb', line 2293

def date_value
  @date_value
end

#datetime_valueGoogle::Apis::DocumentaiV1beta3::GoogleTypeDateTime

Represents civil time (or occasionally physical time). This type can represent a civil time in one of a few possible ways: * When utc_offset is set and time_zone is unset: a civil time on a calendar day with a particular offset from UTC. * When time_zone is set and utc_offset is unset: a civil time on a calendar day in a particular time zone. * When neither time_zone nor utc_offset is set: a civil time on a calendar day in local time. The date is relative to the Proleptic Gregorian Calendar. If year is 0, the DateTime is considered not to have a specific year. month and day must have valid, non- zero values. This type may also be used to represent a physical time if all the date and time fields are set and either case of the time_offset oneof is set. Consider using Timestamp message for physical time instead. If your use case also would like to store the user's timezone, that can be done in another field. This type is more flexible than some applications may want. Make sure to document and validate your application's limitations. Corresponds to the JSON property datetimeValue



2311
2312
2313
# File 'generated/google/apis/documentai_v1beta3/classes.rb', line 2311

def datetime_value
  @datetime_value
end

#money_valueGoogle::Apis::DocumentaiV1beta3::GoogleTypeMoney

Represents an amount of money with its currency type. Corresponds to the JSON property moneyValue



2316
2317
2318
# File 'generated/google/apis/documentai_v1beta3/classes.rb', line 2316

def money_value
  @money_value
end

#textString

Required. Normalized entity value stored as a string. This field is populated for supported document type (e.g. Invoice). For some entity types, one of respective 'structured_value' fields may also be populated. - 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. Corresponds to the JSON property text

Returns:

  • (String)


2326
2327
2328
# File 'generated/google/apis/documentai_v1beta3/classes.rb', line 2326

def text
  @text
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2333
2334
2335
2336
2337
2338
2339
# File 'generated/google/apis/documentai_v1beta3/classes.rb', line 2333

def update!(**args)
  @address_value = args[:address_value] if args.key?(:address_value)
  @date_value = args[:date_value] if args.key?(:date_value)
  @datetime_value = args[:datetime_value] if args.key?(:datetime_value)
  @money_value = args[:money_value] if args.key?(:money_value)
  @text = args[:text] if args.key?(:text)
end