Class JobModel
Represents an existing Job.
public class JobModel
- Inheritance
-
JobModel
Properties
ConnectionName
Name of the transport connection used for this job.
public string ConnectionName { get; set; }
Property Value
Data
Any additional data specific to this Job.
public JObject Data { get; set; }
Property Value
- JObject
Remarks
This data can be provided when the Job is created in the Rules.
ExternalId
System-defined external Id.
public Guid ExternalId { get; set; }
Property Value
Flow
Flow information
public FlowModel Flow { get; set; }
Property Value
JobType
public JobType JobType { get; }
Property Value
Name
Job Name - the name of the current step in the Flow.
public string Name { get; set; }
Property Value
RetryCount
How many times has this Job been retried.
public int? RetryCount { get; set; }
Property Value
- int?
ScheduledDateTime
Date/Time for which the Job was scheduled.
public DateTime? ScheduledDateTime { get; set; }
Property Value
Status
public JobStatus Status { get; set; }
Property Value
WorkItem
Work Item information.
public WorkItemModel WorkItem { get; set; }