tgstation-server 6.12.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 {
13 [ResponseOptions]
14 public long? SessionId { get; set; }
15
19 [ResponseOptions]
20 public DateTimeOffset? LaunchTime { get; set; }
21
25 [ResponseOptions]
26 public uint? ClientCount { get; set; }
27
31 [ResponseOptions]
32 public bool? SoftRestart { get; set; }
33
37 [ResponseOptions]
38 public bool? SoftShutdown { get; set; }
39 }
40}
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? SessionId
An incrementing ID for representing current server execution.
uint? ClientCount
The last known count of connected players. Requires DreamDaemonLaunchParameters.HealthCheckSeconds to...