23 lines
538 B
Go
23 lines
538 B
Go
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"`
|
|
}
|