Files
kittycad.py/kittycad/models/device_access_token_request_form.py

15 lines
267 B
Python
Raw Normal View History

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