Class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaDocumentProcessingConfigParsingConfigOcrParsingConfig
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaDocumentProcessingConfigParsingConfigOcrParsingConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/discoveryengine_v1beta/classes.rb,
lib/google/apis/discoveryengine_v1beta/representations.rb,
lib/google/apis/discoveryengine_v1beta/representations.rb
Overview
The OCR parsing configurations for documents.
Instance Attribute Summary collapse
-
#enhanced_document_elements ⇒ Array<String>
[DEPRECATED] This field is deprecated.
-
#use_native_text ⇒ Boolean
(also: #use_native_text?)
If true, will use native text instead of OCR text on pages containing native text.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaDocumentProcessingConfigParsingConfigOcrParsingConfig
constructor
A new instance of GoogleCloudDiscoveryengineV1alphaDocumentProcessingConfigParsingConfigOcrParsingConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaDocumentProcessingConfigParsingConfigOcrParsingConfig
Returns a new instance of GoogleCloudDiscoveryengineV1alphaDocumentProcessingConfigParsingConfigOcrParsingConfig.
6308 6309 6310 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 6308 def initialize(**args) update!(**args) end |
Instance Attribute Details
#enhanced_document_elements ⇒ Array<String>
[DEPRECATED] This field is deprecated. To use the additional enhanced document
elements processing, please switch to layout_parsing_config.
Corresponds to the JSON property enhancedDocumentElements
6299 6300 6301 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 6299 def enhanced_document_elements @enhanced_document_elements end |
#use_native_text ⇒ Boolean Also known as: use_native_text?
If true, will use native text instead of OCR text on pages containing native
text.
Corresponds to the JSON property useNativeText
6305 6306 6307 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 6305 def use_native_text @use_native_text end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6313 6314 6315 6316 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 6313 def update!(**args) @enhanced_document_elements = args[:enhanced_document_elements] if args.key?(:enhanced_document_elements) @use_native_text = args[:use_native_text] if args.key?(:use_native_text) end |