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