namespace AMWD.Net.Api.Cloudflare.Zones { /// /// When the client requesting the image supports the WebP image codec, and WebP /// offers a performance advantage over the original image format, Cloudflare will /// serve a WebP version of the original image. /// public class WebP : ZoneSettingBase { /// /// Initializes a new instance of the class. /// public WebP() { Id = ZoneSettingId.WebP; } /// /// Current value of the zone setting. /// [JsonProperty("value")] public OnOffState Value { get; set; } } }