namespace AMWD.Net.Api.Cloudflare.Zones
{
///
/// Automatically replace insecure JavaScript libraries with safer and faster
/// alternatives provided under cdnjs and powered by Cloudflare. Currently supports
/// the following libraries: Polyfill under polyfill.io.
///
public class ReplaceInsecureJS : ZoneSettingBase
{
///
/// Initializes a new instance of the class.
///
public ReplaceInsecureJS()
{
Id = ZoneSettingId.ReplaceInsecureJS;
}
///
/// Current value of the zone setting.
///
[JsonProperty("value")]
public OnOffState Value { get; set; }
}
}