Files

19 lines
620 B
Go
Raw Permalink Normal View History

package response
type AgentEvaluationResultResponse struct {
CaseID string `json:"case_id"`
Category string `json:"category"`
Passed bool `json:"passed"`
ReplyText string `json:"reply_text"`
Interrupted bool `json:"interrupted"`
Error string `json:"error,omitempty"`
Finding string `json:"finding,omitempty"`
}
type AgentEvaluationReportResponse struct {
Total int `json:"total"`
Passed int `json:"passed"`
Results []AgentEvaluationResultResponse `json:"results"`
CSV string `json:"csv"`
}