* YOYO NEW API SPEC! * I have generated the latest API! --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
18 lines
367 B
Python
18 lines
367 B
Python
from typing import Optional
|
|
|
|
from pydantic import BaseModel, ConfigDict
|
|
|
|
|
|
class OAuth2ClientInfo(BaseModel):
|
|
"""Information about an OAuth 2.0 client."""
|
|
|
|
csrf_token: Optional[str] = None
|
|
|
|
oidc_nonce: Optional[str] = None
|
|
|
|
pkce_code_verifier: Optional[str] = None
|
|
|
|
url: Optional[str] = None
|
|
|
|
model_config = ConfigDict(protected_namespaces=())
|