Skip to content

Commit

Permalink
✨ update keyboard button action
Browse files Browse the repository at this point in the history
  • Loading branch information
yanyongyu authored Dec 26, 2023
1 parent 3289a30 commit 129f863
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions nonebot/adapters/qq/models/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,13 @@ class Permission(BaseModel):
class Action(BaseModel):
type: Optional[int] = None
permission: Optional[Permission] = None
click_limit: Optional[int] = None
unsupport_tips: Optional[str] = None
data: Optional[str] = None
at_bot_show_channel_list: Optional[bool] = None
reply: Optional[bool] = None
enter: Optional[bool] = None
anchor: Optional[bool] = None
unsupport_tips: Optional[str] = None
click_limit: Optional[int] = None # deprecated
at_bot_show_channel_list: Optional[bool] = None # deprecated


class RenderData(BaseModel):
Expand Down

0 comments on commit 129f863

Please sign in to comment.