Class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta1DocumentChunkedDocumentChunkChunkPageHeader
- Inherits:
-
Object
- Object
- Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta1DocumentChunkedDocumentChunkChunkPageHeader
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/documentai_v1beta2/classes.rb,
lib/google/apis/documentai_v1beta2/representations.rb,
lib/google/apis/documentai_v1beta2/representations.rb
Overview
Represents the page header associated with the chunk.
Instance Attribute Summary collapse
-
#page_span ⇒ Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta1DocumentChunkedDocumentChunkChunkPageSpan
Represents where the chunk starts and ends in the document.
-
#text ⇒ String
Header in text format.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDocumentaiV1beta1DocumentChunkedDocumentChunkChunkPageHeader
constructor
A new instance of GoogleCloudDocumentaiV1beta1DocumentChunkedDocumentChunkChunkPageHeader.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDocumentaiV1beta1DocumentChunkedDocumentChunkChunkPageHeader
Returns a new instance of GoogleCloudDocumentaiV1beta1DocumentChunkedDocumentChunkChunkPageHeader.
2285 2286 2287 |
# File 'lib/google/apis/documentai_v1beta2/classes.rb', line 2285 def initialize(**args) update!(**args) end |
Instance Attribute Details
#page_span ⇒ Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta1DocumentChunkedDocumentChunkChunkPageSpan
Represents where the chunk starts and ends in the document.
Corresponds to the JSON property pageSpan
2278 2279 2280 |
# File 'lib/google/apis/documentai_v1beta2/classes.rb', line 2278 def page_span @page_span end |
#text ⇒ String
Header in text format.
Corresponds to the JSON property text
2283 2284 2285 |
# File 'lib/google/apis/documentai_v1beta2/classes.rb', line 2283 def text @text end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2290 2291 2292 2293 |
# File 'lib/google/apis/documentai_v1beta2/classes.rb', line 2290 def update!(**args) @page_span = args[:page_span] if args.key?(:page_span) @text = args[:text] if args.key?(:text) end |