Class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta1DocumentChunkedDocumentChunk

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

Overview

Represents a chunk.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDocumentaiV1beta1DocumentChunkedDocumentChunk

Returns a new instance of GoogleCloudDocumentaiV1beta1DocumentChunkedDocumentChunk.



2231
2232
2233
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 2231

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

Instance Attribute Details

#chunk_idString

ID of the chunk. Corresponds to the JSON property chunkId

Returns:

  • (String)


2204
2205
2206
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 2204

def chunk_id
  @chunk_id
end

#contentString

Text content of the chunk. Corresponds to the JSON property content

Returns:

  • (String)


2209
2210
2211
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 2209

def content
  @content
end

#page_footersArray<Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta1DocumentChunkedDocumentChunkChunkPageFooter>

Page footers associated with the chunk. Corresponds to the JSON property pageFooters



2214
2215
2216
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 2214

def page_footers
  @page_footers
end

#page_headersArray<Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta1DocumentChunkedDocumentChunkChunkPageHeader>

Page headers associated with the chunk. Corresponds to the JSON property pageHeaders



2219
2220
2221
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 2219

def page_headers
  @page_headers
end

#page_spanGoogle::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta1DocumentChunkedDocumentChunkChunkPageSpan

Represents where the chunk starts and ends in the document. Corresponds to the JSON property pageSpan



2224
2225
2226
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 2224

def page_span
  @page_span
end

#source_block_idsArray<String>

Unused. Corresponds to the JSON property sourceBlockIds

Returns:

  • (Array<String>)


2229
2230
2231
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 2229

def source_block_ids
  @source_block_ids
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2236
2237
2238
2239
2240
2241
2242
2243
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 2236

def update!(**args)
  @chunk_id = args[:chunk_id] if args.key?(:chunk_id)
  @content = args[:content] if args.key?(:content)
  @page_footers = args[:page_footers] if args.key?(:page_footers)
  @page_headers = args[:page_headers] if args.key?(:page_headers)
  @page_span = args[:page_span] if args.key?(:page_span)
  @source_block_ids = args[:source_block_ids] if args.key?(:source_block_ids)
end