namespace AMWD.Net.Api.Cloudflare.Zones
{
///
/// When enabled, Cloudflare will attempt to speed up overall page loads by serving
/// 103 responses with Link headers from the final response. Refer to
/// Early Hints
/// for more information.
///
public class EarlyHints : ZoneSettingBase
{
///
/// Initializes a new instance of the class.
///
public EarlyHints()
{
Id = ZoneSettingId.EarlyHints;
}
///
/// Current value of the zone setting.
///
[JsonProperty("value")]
public OnOffState Value { get; set; }
}
}