class Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3BatchProcessMetadata

The long running operation metadata for batch process method.

Attributes

create_time[RW]

The creation time of the operation. Corresponds to the JSON property `createTime` @return [String]

individual_process_statuses[RW]

The list of response details of each document. Corresponds to the JSON property `individualProcessStatuses` @return [Array<Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3BatchProcessMetadataIndividualProcessStatus>]

state[RW]

The state of the current batch processing. Corresponds to the JSON property `state` @return [String]

state_message[RW]

A message providing more details about the current state of processing. For example, the error message if the operation is failed. Corresponds to the JSON property `stateMessage` @return [String]

update_time[RW]

The last update time of the operation. Corresponds to the JSON property `updateTime` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/documentai_v1beta3/classes.rb, line 4569
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 4574
def update!(**args)
  @create_time = args[:create_time] if args.key?(:create_time)
  @individual_process_statuses = args[:individual_process_statuses] if args.key?(:individual_process_statuses)
  @state = args[:state] if args.key?(:state)
  @state_message = args[:state_message] if args.key?(:state_message)
  @update_time = args[:update_time] if args.key?(:update_time)
end