Files
ai-agent/internal/pkg/dto/response/customer_quick_action_response.go
T

13 lines
351 B
Go
Raw 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"`
}