namespace AMWD.Net.Api.Cloudflare.Zones
{
///
/// Advanced protection from Distributed Denial of Service (DDoS) attacks on your
/// website. This is an uneditable value that is in the
/// case of Business and Enterprise zones.
///
public class AdvancedDDoS : ZoneSettingBase
{
///
/// Initializes a new instance of the class.
///
public AdvancedDDoS()
{
Id = ZoneSettingId.AdvancedDDoS;
}
///
/// Current value of the zone setting.
///
[JsonProperty("value")]
public OnOffState Value { get; set; }
}
}