Add "ZoneSettings" extensions
This commit is contained in:
23
Extensions/Cloudflare.Zones/Models/Settings/BrowserCheck.cs
Normal file
23
Extensions/Cloudflare.Zones/Models/Settings/BrowserCheck.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
namespace AMWD.Net.Api.Cloudflare.Zones
|
||||
{
|
||||
/// <summary>
|
||||
/// Inspect the visitor's browser for headers commonly associated with spammers and
|
||||
/// certain bots.
|
||||
/// </summary>
|
||||
public class BrowserCheck : ZoneSettingBase
|
||||
{
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="BrowserCheck"/> class.
|
||||
/// </summary>
|
||||
public BrowserCheck()
|
||||
{
|
||||
Id = ZoneSettingId.BrowserCheck;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// The status of Browser Integrity Check.
|
||||
/// </summary>
|
||||
[JsonProperty("value")]
|
||||
public OnOffState? Value { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user