JobDto
Namespace: Meshmakers.Octo.Communication.Contracts.DataTransferObjects
Represents a job for data transfer.
public class JobDto
Properties
Id
Gets or sets the job id
public string Id { get; set; }
Property Value
CreatedAt
Datetime of job creation
public Nullable<DateTime> CreatedAt { get; set; }
Property Value
StateChangedAt
Datetime of last state change
public Nullable<DateTime> StateChangedAt { get; set; }
Property Value
Status
Current status
public string Status { get; set; }
Property Value
Reason
Reason of the current state
public string Reason { get; set; }
Property Value
ErrorMessage
Gets or sets the error message if the job failed
public string ErrorMessage { get; set; }
Property Value
Constructors
JobDto()
public JobDto()