mirror of
https://github.com/oskvr37/tiddl.git
synced 2026-06-13 04:05:08 +03:00
54 lines
1.1 KiB
Python
54 lines
1.1 KiB
Python
from typing import Optional
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class AuthUser(BaseModel):
|
|
userId: int
|
|
email: str
|
|
countryCode: str
|
|
fullName: Optional[str]
|
|
firstName: Optional[str]
|
|
lastName: Optional[str]
|
|
nickname: Optional[str]
|
|
username: str
|
|
address: Optional[str]
|
|
city: Optional[str]
|
|
postalcode: Optional[str]
|
|
usState: Optional[str]
|
|
phoneNumber: Optional[str]
|
|
birthday: Optional[int]
|
|
channelId: int
|
|
parentId: int
|
|
acceptedEULA: bool
|
|
created: int
|
|
updated: int
|
|
facebookUid: int
|
|
appleUid: Optional[str]
|
|
googleUid: Optional[str]
|
|
accountLinkCreated: bool
|
|
emailVerified: bool
|
|
newUser: bool
|
|
|
|
|
|
class AuthResponse(BaseModel):
|
|
user: AuthUser
|
|
scope: str
|
|
clientName: str
|
|
token_type: str
|
|
access_token: str
|
|
expires_in: int
|
|
user_id: int
|
|
|
|
|
|
class AuthResponseWithRefresh(AuthResponse):
|
|
refresh_token: str
|
|
|
|
|
|
class AuthDeviceResponse(BaseModel):
|
|
deviceCode: str
|
|
userCode: str
|
|
verificationUri: str
|
|
verificationUriComplete: str
|
|
expiresIn: int
|
|
interval: int
|