Update api spec (#414)
* YOYO NEW API SPEC! * I have generated the latest API! --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
a7f6433735
commit
ab4eebfdb1
9
kittycad/models/device_auth_confirm_params.py
Normal file
9
kittycad/models/device_auth_confirm_params.py
Normal file
@ -0,0 +1,9 @@
|
||||
from pydantic import BaseModel, ConfigDict
|
||||
|
||||
|
||||
class DeviceAuthConfirmParams(BaseModel):
|
||||
"""The request parameters to confirm the `user_code` for the OAuth 2.0 Device Authorization Grant."""
|
||||
|
||||
user_code: str
|
||||
|
||||
model_config = ConfigDict(protected_namespaces=())
|
Reference in New Issue
Block a user