Files
kittycad.py/kittycad/models/token_revoke_request_form.py

17 lines
323 B
Python
Raw Normal View History

from typing import Optional
from pydantic import BaseModel, ConfigDict
class TokenRevokeRequestForm(BaseModel):
"""The request parameters for the OAuth 2.0 token revocation flow."""
client_id: str
client_secret: Optional[str] = None
token: str
model_config = ConfigDict(protected_namespaces=())