namespace AMWD.Net.Api.Cloudflare.Zones
{
///
/// When the client requesting an asset supports the Brotli compression algorithm,
/// Cloudflare will serve a Brotli compressed version of the asset.
///
public class Brotli : ZoneSettingBase
{
///
/// Initializes a new instance of the class.
///
public Brotli()
{
Id = ZoneSettingId.Brotli;
}
///
/// Current value of the zone setting.
///
[JsonProperty("value")]
public OnOffState Value { get; set; }
}
}