Googly.DocumentAI.Model.GoogleCloudDocumentaiV1BatchProcessMetadata (googly_document_ai v0.1.0)

Copy Markdown View Source

The long-running operation metadata for BatchProcessDocuments.

Attributes

  • create_time (type: DateTime.t()) - The creation time of the operation.
  • individual_process_statuses (type: list(Googly.DocumentAI.Model.GoogleCloudDocumentaiV1BatchProcessMetadataIndividualProcessStatus.t())) - The list of response details of each document.
  • state (type: String.t()) - The state of the current batch processing.
  • state_message (type: String.t()) - A message providing more details about the current state of processing. For example, the error message if the operation is failed.
  • update_time (type: DateTime.t()) - The last update time of the operation.

Summary

Types

t()

@type t() :: %Googly.DocumentAI.Model.GoogleCloudDocumentaiV1BatchProcessMetadata{
  create_time: DateTime.t() | nil,
  individual_process_statuses:
    [
      Googly.DocumentAI.Model.GoogleCloudDocumentaiV1BatchProcessMetadataIndividualProcessStatus.t()
    ]
    | nil,
  state: String.t() | nil,
  state_message: String.t() | nil,
  update_time: DateTime.t() | nil
}