Files
abot/gewechat/response/model/personal/profile.py
2025-04-23 17:14:37 +08:00

40 lines
668 B
Python

from dataclasses import dataclass
@dataclass
class Data:
"""微信号"""
alias: str
"""大尺寸头像"""
big_head_img_url: str
"""城市"""
city: str
"""国家"""
country: str
"""绑定的手机号"""
mobile: str
"""昵称"""
nick_name: str
"""省份"""
province: str
"""注册国家"""
reg_country: str
"""性别"""
sex: int
"""签名"""
signature: str
"""小尺寸头像"""
small_head_img_url: str
"""朋友圈背景图"""
sns_bg_img: str
"""uin"""
uin: int
"""微信ID"""
wxid: str
@dataclass
class Profile:
data: Data
msg: str
ret: int