-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypes.go
23 lines (21 loc) · 1.04 KB
/
types.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package main
type ReqData struct {
ConversationId string `json:"conversationId"`
ChatbotCorpId string `json:"chatbotCorpId"`
ChatbotUserId string `json:"chatbotUserId"`
MsgId string `json:"msgId"`
SenderNick string `json:"senderNick"`
IsAdmin bool `json:"isAdmin"`
SenderStaffId string `json:"senderStaffId"`
SessionWebhookExpiredTime int64 `json:"sessionWebhookExpiredTime"`
CreateAt int64 `json:"createAt"`
SenderCorpId string `json:"senderCorpId"`
ConversationType string `json:"conversationType"`
SenderId string `json:"senderId"`
SessionWebhook string `json:"sessionWebhook"`
Text *ReqDataContent `json:"text"`
Msgtype string `json:"msgtype"`
}
type ReqDataContent struct {
Content string `json:"content"`
}