15 lines
238 B
Python
15 lines
238 B
Python
from typing import Optional
|
|
|
|
from pydantic import BaseModel
|
|
|
|
|
|
|
|
class JetstreamApiStats(BaseModel):
|
|
"""Jetstream API statistics."""
|
|
|
|
errors: Optional[int] = None
|
|
|
|
inflight: Optional[int] = None
|
|
|
|
total: Optional[int] = None
|