narasiahli-be/app/module/agent/response/agent.response.go

16 lines
474 B
Go

package response
import "time"
type AgentResponse struct {
ID uint `json:"id"`
AgentID string `json:"agentId"`
Name string `json:"name"`
Description string `json:"description"`
Instructions string `json:"instructions"`
Type string `json:"type"`
Status bool `json:"status"`
IsActive bool `json:"isActive"`
CreatedAt time.Time `json:"createdAt"`
UpdatedAt time.Time `json:"updatedAt"`
}