Files
kittycad.py/kittycad/models/device_auth_request_form.py
Jess Frazelle bc3d698539 switch to pydantic
Signed-off-by: Jess Frazelle <github@jessfraz.com>
2023-11-28 23:50:50 -08:00

10 lines
201 B
Python

from uuid import UUID
from pydantic import BaseModel
class DeviceAuthRequestForm(BaseModel):
"""The request parameters for the OAuth 2.0 Device Authorization Grant flow."""
client_id: UUID