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

23 lines
538 B
Go
Raw Normal View History

2026-01-14 01:29:35 +00:00
package response
import "time"
type KnowledgeBaseResponse struct {
ID uint `json:"id"`
AgentId *string `json:"agentId"`
AgentName *string `json:"agentName"`
CreatedById uint `json:"createdById"`
Title *string `json:"title"`
Status int `json:"status"`
FileJournalUrl *string `json:"fileJournalUrl"`
FileAudioUrl *string `json:"fileAudioUrl"`
FileVideoUrl *string `json:"fileVideoUrl"`
IsActive bool `json:"isActive"`
CreatedAt time.Time `json:"createdAt"`
UpdatedAt time.Time `json:"updatedAt"`
}