Skip to main content

JobDto

Namespace: Meshmakers.Octo.Communication.Contracts.DataTransferObjects

Represents a job for data transfer.

public class JobDto

Inheritance ObjectJobDto

Properties

Id

Gets or sets the job id

public string Id { get; set; }

Property Value

String

CreatedAt

Datetime of job creation

public Nullable<DateTime> CreatedAt { get; set; }

Property Value

Nullable<DateTime>

StateChangedAt

Datetime of last state change

public Nullable<DateTime> StateChangedAt { get; set; }

Property Value

Nullable<DateTime>

Status

Current status

public string Status { get; set; }

Property Value

String

Reason

Reason of current state

public string Reason { get; set; }

Property Value

String

Constructors

JobDto()

public JobDto()