namespace AMWD.Net.Api.Cloudflare.Zones { /// /// Cloudflare Mirage reduces bandwidth used by images in mobile browsers. It can /// accelerate loading of image-heavy websites on very slow mobile connections and /// HTTP/1. /// public class Mirage : ZoneSettingBase { /// /// Initializes a new instance of the class. /// public Mirage() { Id = ZoneSettingId.Mirage; } /// /// The status of Mirage. /// [JsonProperty("value")] public OnOffState? Value { get; set; } } }