Files
kittycad.py/kittycad/models/device_auth_request_form.py
Jess Frazelle ed36086040 working samples
Signed-off-by: Jess Frazelle <github@jessfraz.com>
2023-11-29 10:32:31 -08:00

10 lines
179 B
Python

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