class Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1BatchProcessMetadataIndividualProcessStatus

The status of a each individual document in the batch process.

Attributes

human_review_status[RW]

The status of human review on a processed document. Corresponds to the JSON property `humanReviewStatus` @return [Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1HumanReviewStatus]

input_gcs_source[RW]

The source of the document, same as the [input_gcs_source] field in the request when the batch process started. The batch process is started by take snapshot of that document, since a user can move or change that document during the process. Corresponds to the JSON property `inputGcsSource` @return [String]

output_gcs_destination[RW]

The output_gcs_destination (in the request as 'output_gcs_destination') of the processed document if it was successful, otherwise empty. Corresponds to the JSON property `outputGcsDestination` @return [String]

status[RW]

The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [ gRPC](github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https: //cloud.google.com/apis/design/errors). Corresponds to the JSON property `status` @return [Google::Apis::DocumentaiV1::GoogleRpcStatus]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/documentai_v1/classes.rb, line 725
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_v1/classes.rb, line 730
def update!(**args)
  @human_review_status = args[:human_review_status] if args.key?(:human_review_status)
  @input_gcs_source = args[:input_gcs_source] if args.key?(:input_gcs_source)
  @output_gcs_destination = args[:output_gcs_destination] if args.key?(:output_gcs_destination)
  @status = args[:status] if args.key?(:status)
end