namespace AMWD.Net.Api.Cloudflare.Zones { /// /// Image Transformations provides on-demand resizing, conversion and optimization /// for images served through Cloudflare's network. Refer to the /// Image Transformations documentation /// for more information. /// public class ImageResizing : ZoneSettingBase { /// /// Initializes a new instance of the class. /// public ImageResizing() { Id = ZoneSettingId.ImageResizing; } /// /// Current value of the zone setting. /// [JsonProperty("value")] public OnOffOpenState Value { get; set; } } }