Skip to content
Snippets Groups Projects
models.py 205 B
Newer Older
  • Learn to ignore specific revisions
  • from pydantic import BaseModel
    from typing import Optional
    
    class OAuth2TokenRequest(BaseModel):
        client_id: str
        code: str
        grant_type: str
        redirect_uri: str
        code_verifier: Optional[str]