Class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta2DocumentTextAnchorTextSegment

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/documentai_v1/classes.rb,
lib/google/apis/documentai_v1/representations.rb,
lib/google/apis/documentai_v1/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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDocumentaiV1beta2DocumentTextAnchorTextSegment

Returns a new instance of GoogleCloudDocumentaiV1beta2DocumentTextAnchorTextSegment.



5656
5657
5658
# File 'lib/google/apis/documentai_v1/classes.rb', line 5656

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

Instance Attribute Details

#end_indexFixnum

TextSegment half open end UTF-8 char index in the Document.text. Corresponds to the JSON property endIndex

Returns:

  • (Fixnum)


5649
5650
5651
# File 'lib/google/apis/documentai_v1/classes.rb', line 5649

def end_index
  @end_index
end

#start_indexFixnum

TextSegment start UTF-8 char index in the Document.text. Corresponds to the JSON property startIndex

Returns:

  • (Fixnum)


5654
5655
5656
# File 'lib/google/apis/documentai_v1/classes.rb', line 5654

def start_index
  @start_index
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5661
5662
5663
5664
# File 'lib/google/apis/documentai_v1/classes.rb', line 5661

def update!(**args)
  @end_index = args[:end_index] if args.key?(:end_index)
  @start_index = args[:start_index] if args.key?(:start_index)
end