Class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentTextAnchorTextSegment
- Inherits:
-
Object
- Object
- Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentTextAnchorTextSegment
- 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
A text segment in the Document.text. The indices may be out of bounds which indicate that the text extends into another document shard for large sharded documents. See ShardInfo.text_offset
Instance Attribute Summary collapse
-
#end_index ⇒ Fixnum
TextSegment half open end UTF-8 char index in the Document.text.
-
#start_index ⇒ Fixnum
TextSegment start UTF-8 char index in the Document.text.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDocumentaiV1beta3DocumentTextAnchorTextSegment
constructor
A new instance of GoogleCloudDocumentaiV1beta3DocumentTextAnchorTextSegment.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDocumentaiV1beta3DocumentTextAnchorTextSegment
Returns a new instance of GoogleCloudDocumentaiV1beta3DocumentTextAnchorTextSegment.
5313 5314 5315 |
# File 'generated/google/apis/documentai_v1beta3/classes.rb', line 5313 def initialize(**args) update!(**args) end |
Instance Attribute Details
#end_index ⇒ Fixnum
TextSegment half open end UTF-8 char index in the Document.text.
Corresponds to the JSON property endIndex
5306 5307 5308 |
# File 'generated/google/apis/documentai_v1beta3/classes.rb', line 5306 def end_index @end_index end |
#start_index ⇒ Fixnum
TextSegment start UTF-8 char index in the Document.text.
Corresponds to the JSON property startIndex
5311 5312 5313 |
# File 'generated/google/apis/documentai_v1beta3/classes.rb', line 5311 def start_index @start_index end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5318 5319 5320 5321 |
# File 'generated/google/apis/documentai_v1beta3/classes.rb', line 5318 def update!(**args) @end_index = args[:end_index] if args.key?(:end_index) @start_index = args[:start_index] if args.key?(:start_index) end |