class Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3BatchProcessRequest

Request message for batch process document method.

Attributes

document_output_config[RW]

Config that controls the output of documents. All documents will be written as a JSON file. Corresponds to the JSON property `documentOutputConfig` @return [Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentOutputConfig]

input_configs[RW]

The input config for each single document in the batch process. Corresponds to the JSON property `inputConfigs` @return [Array<Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3BatchProcessRequestBatchInputConfig>]

input_documents[RW]

The common config to specify a set of documents used as input. Corresponds to the JSON property `inputDocuments` @return [Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3BatchDocumentsInputConfig]

output_config[RW]

The message for output config in batch process. Corresponds to the JSON property `outputConfig` @return [Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3BatchProcessRequestBatchOutputConfig]

skip_human_review[RW]

Whether Human Review feature should be skipped for this request. Default to false. Corresponds to the JSON property `skipHumanReview` @return [Boolean]

skip_human_review?[RW]

Whether Human Review feature should be skipped for this request. Default to false. Corresponds to the JSON property `skipHumanReview` @return [Boolean]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/documentai_v1beta3/classes.rb, line 4670
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/documentai_v1beta3/classes.rb, line 4675
def update!(**args)
  @document_output_config = args[:document_output_config] if args.key?(:document_output_config)
  @input_configs = args[:input_configs] if args.key?(:input_configs)
  @input_documents = args[:input_documents] if args.key?(:input_documents)
  @output_config = args[:output_config] if args.key?(:output_config)
  @skip_human_review = args[:skip_human_review] if args.key?(:skip_human_review)
end