Files
kittycad.py/kittycad/models/token_revoke_request_form.py
zoo-github-actions-auth[bot] 64fc99943e Update api spec (#263)
* YOYO NEW API SPEC!

* new files

Signed-off-by: Jess Frazelle <github@jessfraz.com>

* fixes

Signed-off-by: Jess Frazelle <github@jessfraz.com>

---------

Signed-off-by: Jess Frazelle <github@jessfraz.com>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: Greg Sweeney <greg@kittycad.io>
Co-authored-by: Jess Frazelle <github@jessfraz.com>
2024-09-10 09:17:32 -07:00

18 lines
409 B
Python

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