video
This commit is contained in:
parent
9d69129614
commit
f49fff3121
|
@ -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"`
|
||||
|
|
Loading…
Reference in New Issue