namespace AMWD.Net.Api.Cloudflare.Zones { /// /// Enable Network Error Logging reporting on your zone. (Beta) /// public class NEL : ZoneSettingBase { /// /// Initializes a new instance of the class. /// public NEL() { Id = ZoneSettingId.NEL; } /// /// Current value of the zone setting. /// [JsonProperty("value")] public NELValue? Value { get; set; } } /// /// Current value of the zone setting. /// public class NELValue { /// /// Current value of the zone setting. /// [JsonProperty("enabled")] public bool? Enabled { get; set; } } }