Zep.Schemas.BatchProgress (Zep v1.0.0)

Copy Markdown View Source

Item-count progress for a batch job, as returned nested in Zep.Schemas.BatchJob.

Summary

Types

t()

@type t() :: %Zep.Schemas.BatchProgress{
  failed_items: non_neg_integer() | nil,
  percent_complete: number() | nil,
  processing_items: non_neg_integer() | nil,
  queued_items: non_neg_integer() | nil,
  skipped_items: non_neg_integer() | nil,
  succeeded_items: non_neg_integer() | nil,
  total_items: non_neg_integer() | nil
}