namespace AMWD.Net.Api.Cloudflare.Zones
{
///
/// Turn on or off Rocket Loader in the Cloudflare Speed app.
///
public class RocketLoader : ZoneSettingBase
{
///
/// Initializes a new instance of the class.
///
public RocketLoader()
{
Id = ZoneSettingId.RocketLoader;
}
///
/// The status of Rocket Loader.
///
[JsonProperty("value")]
public OnOffState? Value { get; set; }
}
}