working samples

Signed-off-by: Jess Frazelle <github@jessfraz.com>
This commit is contained in:
Jess Frazelle
2023-11-29 10:32:31 -08:00
parent 9f8069decb
commit ed36086040
37 changed files with 962 additions and 856 deletions

View File

@ -1,4 +1,3 @@
from uuid import UUID
from pydantic import BaseModel
@ -8,8 +7,8 @@ from ..models.o_auth2_grant_type import OAuth2GrantType
class DeviceAccessTokenRequestForm(BaseModel):
"""The form for a device access token request."""
client_id: UUID
client_id: str
device_code: UUID
device_code: str
grant_type: OAuth2GrantType