namespace AMWD.Net.Api.Cloudflare.Zones
{
///
/// WebSockets are open connections sustained between the client and the origin
/// server. Inside a WebSockets connection, the client and the origin can pass data
/// back and forth without having to reestablish sessions. This makes exchanging
/// data within a WebSockets connection fast. WebSockets are often used for real-time
/// applications such as live chat and gaming. For more information refer to
/// Can I use Cloudflare with Websockets.
///
public class Websocket : ZoneSettingBase
{
///
/// Initializes a new instance of the class.
///
public Websocket()
{
Id = ZoneSettingId.Websocket;
}
///
/// Current value of the zone setting.
///
[JsonProperty("value")]
public OnOffState Value { get; set; }
}
}