Commit 1f004f4f by 杨铁龙 Committed by Sixong.Zhu

新增action消息类型

parent 9a75d867
Showing with 2 additions and 0 deletions
...@@ -91,6 +91,7 @@ export const enum MessageType { ...@@ -91,6 +91,7 @@ export const enum MessageType {
Voice = "voice", Voice = "voice",
GeneralOrderMsg = "general_order_msg", GeneralOrderMsg = "general_order_msg",
Withdraw = "withdraw", Withdraw = "withdraw",
Action = "action"
} }
export const enum MessageHandled { export const enum MessageHandled {
...@@ -120,6 +121,7 @@ export interface Message { ...@@ -120,6 +121,7 @@ export interface Message {
update_time: number; update_time: number;
url: string; url: string;
handled?: MessageHandled; handled?: MessageHandled;
modelData?: any;
} }
export type MessageRequestResult = readonly Message[]; export type MessageRequestResult = readonly Message[];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment