Files

13 lines
351 B
Go
Raw Permalink Normal View History

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"`
}