Class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta1DocumentDocumentLayoutDocumentLayoutBlockLayoutTextBlock

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

Represents a text type block.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDocumentaiV1beta1DocumentDocumentLayoutDocumentLayoutBlockLayoutTextBlock

Returns a new instance of GoogleCloudDocumentaiV1beta1DocumentDocumentLayoutDocumentLayoutBlockLayoutTextBlock.



6665
6666
6667
# File 'lib/google/apis/documentai_v1/classes.rb', line 6665

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

Instance Attribute Details

#blocksArray<Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta1DocumentDocumentLayoutDocumentLayoutBlock>

A text block could further have child blocks. Repeated blocks support further hierarchies and nested blocks. Corresponds to the JSON property blocks



6651
6652
6653
# File 'lib/google/apis/documentai_v1/classes.rb', line 6651

def blocks
  @blocks
end

#textString

Text content stored in the block. Corresponds to the JSON property text

Returns:

  • (String)


6656
6657
6658
# File 'lib/google/apis/documentai_v1/classes.rb', line 6656

def text
  @text
end

#typeString

Type of the text in the block. Available options are: paragraph, subtitle, heading-1, heading-2, heading-3, heading-4, heading-5, header, footer. Corresponds to the JSON property type

Returns:

  • (String)


6663
6664
6665
# File 'lib/google/apis/documentai_v1/classes.rb', line 6663

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6670
6671
6672
6673
6674
# File 'lib/google/apis/documentai_v1/classes.rb', line 6670

def update!(**args)
  @blocks = args[:blocks] if args.key?(:blocks)
  @text = args[:text] if args.key?(:text)
  @type = args[:type] if args.key?(:type)
end