main
 1# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
 2
 3from .._models import BaseModel
 4
 5__all__ = ["BatchRequestCounts"]
 6
 7
 8class BatchRequestCounts(BaseModel):
 9    completed: int
10    """Number of requests that have been completed successfully."""
11
12    failed: int
13    """Number of requests that have failed."""
14
15    total: int
16    """Total number of requests in the batch."""