recovers
UserInfo_rec
dataclass
用户信息
Attributes:
Name | Type | Description |
---|---|---|
portrait |
str
|
portrait |
user_name |
str
|
用户名 |
nick_name_new |
str
|
新版昵称 |
nick_name |
str
|
用户昵称 |
show_name |
str
|
显示名称 |
log_name |
str
|
用于在日志中记录用户信息 |
Recover
dataclass
待恢复帖子信息
Attributes:
Name | Type | Description |
---|---|---|
text |
str
|
文本内容 |
tid |
int
|
所在主题帖id |
pid |
int
|
回复id 若为主题帖则该字段为0 |
user |
UserInfo_rec
|
发布者的用户信息 |
op_show_name |
str
|
操作人显示名称 |
op_time |
int
|
操作时间 10位时间戳 以秒为单位 |
is_floor |
bool
|
是否为楼中楼 |
is_hide |
bool
|
是否为屏蔽 |
Page_recover
dataclass
页信息
Attributes:
Name | Type | Description |
---|---|---|
page_size |
int
|
页大小 |
current_page |
int
|
当前页码 |
has_more |
bool
|
是否有后继页 |
has_prev |
bool
|
是否有前驱页 |
Recovers
dataclass
待恢复帖子列表
Attributes:
Name | Type | Description |
---|---|---|
objs |
list[Recover]
|
待恢复帖子列表 |
err |
Exception | None
|
捕获的异常 |
page |
Page_recover
|
页信息 |
has_more |
bool
|
是否还有下一页 |