namespace AMWD.Net.Api.Cloudflare.Zones { /// /// Inspect the visitor's browser for headers commonly associated with spammers and /// certain bots. /// public class BrowserCheck : ZoneSettingBase { /// /// Initializes a new instance of the class. /// public BrowserCheck() { Id = ZoneSettingId.BrowserCheck; } /// /// The status of Browser Integrity Check. /// [JsonProperty("value")] public OnOffState? Value { get; set; } } }