File: job.go

package info (click to toggle)
golang-github-nesv-go-dynect 0.6.0%2Bgit20190806.63e11f6-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 224 kB
  • sloc: makefile: 2
file content (8 lines) | stat: -rw-r--r-- 200 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
package dynect

type JobData struct {
	Status   string         `json:"status"`
	Data     interface{}    `json:"data"`
	ID       int            `json:"job_id"`
	Messages []MessageBlock `json:"msgs"`
}