This commit is contained in:
jiangyong27 2024-01-24 22:17:28 +08:00
parent 9d69129614
commit f49fff3121
1 changed files with 9 additions and 0 deletions

View File

@ -48,6 +48,8 @@ type CustomerMessage struct {
Text *CustomerText
Event *CustomerEvent
Image *CustomerImage
Video *CustomerVideo
Voice *CustomerVoice
}
type CustomerServicer struct {
@ -68,6 +70,13 @@ type CustomerText struct {
type CustomerImage struct {
MediaId string
}
type CustomerVideo struct {
MediaId string
}
type CustomerVoice struct {
MediaId string
}
type CustomerEvent struct {
EventType string `json:"event_type"`