class Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1BatchProcessMetadata
The long running operation metadata for batch process method.
Attributes
The creation time of the operation. Corresponds to the JSON property `createTime` @return [String]
The list of response details of each document. Corresponds to the JSON property `individualProcessStatuses` @return [Array<Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1BatchProcessMetadataIndividualProcessStatus>]
The state of the current batch processing. Corresponds to the JSON property `state` @return [String]
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]
The last update time of the operation. Corresponds to the JSON property `updateTime` @return [String]
Public Class Methods
# File lib/google/apis/documentai_v1/classes.rb, line 678 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/documentai_v1/classes.rb, line 683 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