11 lines
167 B
Python
11 lines
167 B
Python
from datetime import datetime
|
|
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class QuotaResponse(BaseModel):
|
|
limit: int
|
|
used: int
|
|
remaining: int
|
|
reset_at: datetime
|