File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -651,7 +651,7 @@ button_text: "测试按钮文本" // 欲点击按钮的文本标题
651651::: details ProtoBuf数据结构
652652
653653``` proto
654- // 通过消息序列列出消息
654+ // 通过按钮事件点击消息
655655message button_report_send {
656656 string msg_id = 2; // 信息ID
657657 uint64 chat_type = 3; // 对象类型, 1-用户 2-群聊 3-机器人
@@ -706,7 +706,7 @@ chat_type: 2 // 信息所属对象类型, 1-用户 2-群聊 3-机器人
706706::: details ProtoBuf数据结构
707707
708708``` proto
709- // 通过消息序列列出消息
709+ // 通过msgId撤回消息
710710message recall_msg_send {
711711 string msg_id = 2; // 信息ID
712712 string chat_id = 3; // 信息所属对象ID
@@ -729,7 +729,7 @@ status {
729729::: details ProtoBuf数据结构
730730
731731``` proto
732- // 按钮事件点击返回状态信息
732+ // 撤回消息返回数据
733733message recall_msg {
734734 Status status = 1;
735735}
@@ -759,7 +759,7 @@ chat_type: 2 // 信息所属对象类型, 1-用户 2-群聊 3-机器人
759759::: details ProtoBuf数据结构
760760
761761``` proto
762- // 通过消息序列列出消息
762+ // 通过msgId撤回消息
763763message recall_msg_batch_send {
764764 repeated string msg_id = 2; // 信息ID
765765 string chat_id = 3; // 信息所属对象ID
@@ -782,7 +782,7 @@ status {
782782::: details ProtoBuf数据结构
783783
784784``` proto
785- // 批量信息撤回返回状态码
785+ // 批量信息撤回返回状态
786786message recall_msg_batch {
787787 Status status = 1;
788788}
You can’t perform that action at this time.
0 commit comments