mirror of
https://github.com/daimyomizukagebay61/SteamPanel.git
synced 2026-07-25 11:44:28 +00:00
21 lines
319 B
Python
21 lines
319 B
Python
from typing import List
|
|
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class Params(BaseModel):
|
|
nonce: str
|
|
auth: str
|
|
|
|
|
|
class TransferInfoItem(BaseModel):
|
|
url: str
|
|
params: Params
|
|
|
|
|
|
class FinalizeLoginStatus(BaseModel):
|
|
steamID: str
|
|
redir: str
|
|
transfer_info: List[TransferInfoItem]
|
|
primary_domain: str
|