Protocol ST refresh configuration
| 226 | |
| 227 | |
| 228 | class TokenRefreshConfig(BaseModel): |
| 229 | """Protocol ST refresh configuration""" |
| 230 | |
| 231 | id: int = 1 |
| 232 | enabled: bool = True |
| 233 | refresh_interval_minutes: int = 120 |
| 234 | updated_at: Optional[datetime] = None |
| 235 | |
| 236 | |
| 237 | # OpenAI Compatible Request Models |
no outgoing calls
no test coverage detected