tgstation-server 6.12.3
The /tg/station 13 server suite
Loading...
Searching...
No Matches
JobResponse.cs
Go to the documentation of this file.
2{
6 public sealed class JobResponse : Internal.Job
7 {
11 public long? InstanceId { get; set; }
12
16 public UserName? StartedBy { get; set; }
17
21 [ResponseOptions]
22 public UserName? CancelledBy { get; set; }
23
27 [ResponseOptions]
28 public int? Progress { get; set; }
29
33 [ResponseOptions]
34 public string? Stage { get; set; }
35 }
36}
Represents a long running job on the server. Model is read-only, updates attempt to cancel the job.
Definition JobResponse.cs:7
int? Progress
Optional progress between 0 and 100 inclusive.
UserName? StartedBy
The UserResponse that started the job.
long? InstanceId
The EntityId.Id of the Instance.
string? Stage
Optional description of the job's current .
UserName? CancelledBy
The UserResponse that cancelled the job.
Base class for user names.
Definition UserName.cs:7