namespace AMWD.Net.Api.Cloudflare.Zones
{
///
/// Cloudflare will prefetch any URLs that are included in the response headers.
/// This is limited to Enterprise Zones.
///
public class PrefetchPreload : ZoneSettingBase
{
///
/// Initializes a new instance of the class.
///
public PrefetchPreload()
{
Id = ZoneSettingId.PrefetchPreload;
}
///
/// Current value of the zone setting.
///
[JsonProperty("value")]
public OnOffState Value { get; set; }
}
}