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

15 lines
267 B
Python

from pydantic import BaseModel
from ..models.o_auth2_grant_type import OAuth2GrantType
class DeviceAccessTokenRequestForm(BaseModel):
"""The form for a device access token request."""
client_id: str
device_code: str
grant_type: OAuth2GrantType