Class JobLog
Log / Journal of Jobs executed.
public class JobLog
- Inheritance
-
JobLog
Properties
FinishDate
Timestamp when the Job ended.
public DateTime? FinishDate { get; set; }
Property Value
Job
Reference to the Job.
public Job Job { get; set; }
Property Value
Remarks
It's not clear if this is always populated.
JobId
Reference to the Job which was run
public int JobId { get; set; }
Property Value
JobLogId
Internal ID
public int JobLogId { get; set; }
Property Value
Notes
Additional protocol information that was left after the Job ran.
public string Notes { get; set; }
Property Value
StartDate
Timestamp when the Job started.
public DateTime StartDate { get; set; }
Property Value
Succeeded
Success information.
public bool? Succeeded { get; set; }
Property Value
- bool?