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 Text *CustomerText
Event *CustomerEvent Event *CustomerEvent
Image *CustomerImage Image *CustomerImage
Video *CustomerVideo
Voice *CustomerVoice
} }
type CustomerServicer struct { type CustomerServicer struct {
@ -68,6 +70,13 @@ type CustomerText struct {
type CustomerImage struct { type CustomerImage struct {
MediaId string MediaId string
} }
type CustomerVideo struct {
MediaId string
}
type CustomerVoice struct {
MediaId string
}
type CustomerEvent struct { type CustomerEvent struct {
EventType string `json:"event_type"` EventType string `json:"event_type"`