package models import "time" type Job struct { ID uint64 TemplateID uint64 Status string RequestedBy uint64 PermissionScopeJSON []byte OptionsJSON []byte RowEstimate *int64 TotalRows *int64 FileFormat string StartedAt *time.Time FinishedAt *time.Time }