Class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1BatchProcessRequest
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1BatchProcessRequest
 
- 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
Request message for batch process document method.
Instance Attribute Summary collapse
- 
  
    
      #document_output_config  ⇒ Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentOutputConfig 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Config that controls the output of documents. 
- 
  
    
      #input_documents  ⇒ Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1BatchDocumentsInputConfig 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The common config to specify a set of documents used as input. 
- 
  
    
      #skip_human_review  ⇒ Boolean 
    
    
      (also: #skip_human_review?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    Whether Human Review feature should be skipped for this request. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudDocumentaiV1BatchProcessRequest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of GoogleCloudDocumentaiV1BatchProcessRequest. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Constructor Details
#initialize(**args) ⇒ GoogleCloudDocumentaiV1BatchProcessRequest
Returns a new instance of GoogleCloudDocumentaiV1BatchProcessRequest.
| 1018 1019 1020 | # File 'lib/google/apis/documentai_v1/classes.rb', line 1018 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#document_output_config ⇒ Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentOutputConfig
Config that controls the output of documents. All documents will be written as
a JSON file.
Corresponds to the JSON property documentOutputConfig
| 1004 1005 1006 | # File 'lib/google/apis/documentai_v1/classes.rb', line 1004 def document_output_config @document_output_config end | 
#input_documents ⇒ Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1BatchDocumentsInputConfig
The common config to specify a set of documents used as input.
Corresponds to the JSON property inputDocuments
| 1009 1010 1011 | # File 'lib/google/apis/documentai_v1/classes.rb', line 1009 def input_documents @input_documents end | 
#skip_human_review ⇒ Boolean Also known as: skip_human_review?
Whether Human Review feature should be skipped for this request. Default to
false.
Corresponds to the JSON property skipHumanReview
| 1015 1016 1017 | # File 'lib/google/apis/documentai_v1/classes.rb', line 1015 def skip_human_review @skip_human_review end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1023 1024 1025 1026 1027 | # File 'lib/google/apis/documentai_v1/classes.rb', line 1023 def update!(**args) @document_output_config = args[:document_output_config] if args.key?(:document_output_config) @input_documents = args[:input_documents] if args.key?(:input_documents) @skip_human_review = args[:skip_human_review] if args.key?(:skip_human_review) end |