* use default values for non-required properties if a default is specified * generate client * I have generated the latest API! --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
16 lines
239 B
Python
16 lines
239 B
Python
|
|
from pydantic import BaseModel, ConfigDict
|
|
|
|
|
|
|
|
class JetstreamApiStats(BaseModel):
|
|
"""Jetstream API statistics."""
|
|
|
|
errors: int = 0
|
|
|
|
inflight: int = 0
|
|
|
|
total: int = 0
|
|
|
|
model_config = ConfigDict(protected_namespaces=())
|