using Newtonsoft.Json; namespace Maki.Structures.Gateway { /// /// Discord Gateway Hello structure /// internal struct GatewayHello { /// /// the interval (in milliseconds) the client should heartbeat with /// [JsonProperty("heartbeat_interval")] public int HeartbeatInterval; /// /// used for debugging, array of servers connected to /// [JsonProperty("_trace")] public string[] DebugTrace; } }