20 lines
845 B
Go
20 lines
845 B
Go
package models
|
|
|
|
type Task struct {
|
|
ID int `json:"id"`
|
|
AgentID string `json:"agent_id"`
|
|
AgentName string `json:"agent_name,omitempty"`
|
|
CustomerName string `json:"customer_name,omitempty"`
|
|
Action string `json:"action"`
|
|
Status string `json:"status"`
|
|
ScheduledAt string `json:"scheduled_at"`
|
|
StartedAt *string `json:"started_at,omitempty"`
|
|
FinishedAt *string `json:"finished_at,omitempty"`
|
|
Result interface{} `json:"result,omitempty"`
|
|
WebhookURL string `json:"webhook_url,omitempty"`
|
|
WebhookSent bool `json:"webhook_sent"`
|
|
WebhookResponse string `json:"webhook_response,omitempty"`
|
|
CreatedBy string `json:"created_by,omitempty"`
|
|
CreatedAt string `json:"created_at"`
|
|
}
|