package response import "code.tczkiot.com/wlw/ai-agent/internal/pkg/enums" type AgentUserOptionResponse struct { ID int64 `json:"id"` Username string `json:"username"` Nickname string `json:"nickname"` Avatar string `json:"avatar"` } type AgentProfileResponse struct { ID int64 `json:"id"` UserID int64 `json:"userId"` TeamID int64 `json:"teamId"` TeamName string `json:"teamName,omitempty"` Username string `json:"username,omitempty"` Nickname string `json:"nickname,omitempty"` AgentCode string `json:"agentCode"` DisplayName string `json:"displayName"` Avatar string `json:"avatar"` ServiceStatus enums.ServiceStatus `json:"serviceStatus"` MaxConcurrentCount int `json:"maxConcurrentCount"` PriorityLevel int `json:"priorityLevel"` AutoAssignEnabled bool `json:"autoAssignEnabled"` ReceiveOfflineMessage bool `json:"receiveOfflineMessage"` LastOnlineAt string `json:"lastOnlineAt,omitempty"` LastStatusAt string `json:"lastStatusAt,omitempty"` Remark string `json:"remark"` } type AgentTeamResponse struct { ID int64 `json:"id"` Name string `json:"name"` LeaderUserID int64 `json:"leaderUserId"` LeaderUsername string `json:"leaderUsername,omitempty"` LeaderNickname string `json:"leaderNickname,omitempty"` Status enums.Status `json:"status"` Description string `json:"description"` Remark string `json:"remark"` } type AgentTeamScheduleResponse struct { ID int64 `json:"id"` TeamID int64 `json:"teamId"` TeamName string `json:"teamName,omitempty"` StartAt string `json:"startAt"` EndAt string `json:"endAt"` Remark string `json:"remark"` } type AgentTeamScheduleBatchPreviewResponse struct { Total int `json:"total"` Conflict bool `json:"conflict"` Items []AgentTeamScheduleBatchPreviewItem `json:"items"` } type AgentTeamScheduleBatchPreviewItem struct { TeamID int64 `json:"teamId"` TeamName string `json:"teamName"` Date string `json:"date"` Weekday int `json:"weekday"` StartAt string `json:"startAt"` EndAt string `json:"endAt"` Remark string `json:"remark"` Conflict bool `json:"conflict"` ConflictReason string `json:"conflictReason"` } type AgentTeamScheduleBatchGenerateResponse struct { Created int `json:"created"` }