13 lines
351 B
Go
13 lines
351 B
Go
|
|
package response
|
||
|
|
|
||
|
|
type CustomerQuickActionResponse struct {
|
||
|
|
Code string `json:"code"`
|
||
|
|
Title string `json:"title"`
|
||
|
|
Description string `json:"description,omitempty"`
|
||
|
|
}
|
||
|
|
|
||
|
|
type CustomerQuickActionExecutionResponse struct {
|
||
|
|
CustomerMessage MessageResponse `json:"customer_message"`
|
||
|
|
ReplyMessage MessageResponse `json:"reply_message"`
|
||
|
|
}
|