This commit is contained in:
laodaming
2023-11-06 18:25:37 +08:00
parent 71f7be0149
commit 03af6aa70e
4 changed files with 43 additions and 14 deletions

View File

@@ -16,10 +16,9 @@ service feishu-sync {
}
type WebhookReq {
Ts string `json:"ts,optional"` //webhook时间
Uuid string `json:"uuid,optional"` //事件唯一标识
Token string `json:"token,optional"` //即Verification Token
Event map[string]interface{} `json:"event,optional"` //事件
Schema string `json:"schema"`
Header map[string]interface{} `json:"header"`
Event map[string]interface{} `json:"event"`
Challenge string `json:"challenge,optional"` //设置飞书通知接口验证用
Type string `json:"type,optional"` //设置飞书通知接口验证用
}