tgstation-server 6.19.0
The /tg/station 13 server suite
Loading...
Searching...
No Matches
DreamDaemonApiBase.cs
Go to the documentation of this file.
1using System;
2
4{
8 public abstract class DreamDaemonApiBase : DreamDaemonSettings
9 {
14 [ResponseOptions]
15 public long? SessionId { get; set; }
16
21 [ResponseOptions]
22 public long? WorldIteration { get; set; }
23
27 [ResponseOptions]
28 public DateTimeOffset? LaunchTime { get; set; }
29
34 [ResponseOptions]
35 public uint? ClientCount { get; set; }
36
41 [ResponseOptions]
42 public bool? SoftRestart { get; set; }
43
47 [ResponseOptions]
48 public bool? SoftShutdown { get; set; }
49 }
50}
bool? SoftShutdown
If the server is undergoing a soft shutdown.
bool? SoftRestart
If the server is undergoing a soft reset. This may be automatically set by changes to other fields.
DateTimeOffset? LaunchTime
When the current server execution was started.
long? WorldIteration
A incrementing ID for representing current iteration of servers world (i.e. after calling /world/proc...
long? SessionId
An incrementing ID for representing current server execution.
uint? ClientCount
The last known count of connected players. Requires DreamDaemonLaunchParameters.HealthCheckSeconds to...