namespace AMWD.Net.Api.Cloudflare.Zones { /// /// Turn on or off whether Cloudflare should wait for an entire file from the origin /// server before forwarding it to the site visitor. By default, Cloudflare sends /// packets to the client as they arrive from the origin server. /// public class ResponseBuffering : ZoneSettingBase { /// /// Initializes a new instance of the class. /// public ResponseBuffering() { Id = ZoneSettingId.ResponseBuffering; } /// /// The status of Response Buffering. /// [JsonProperty("value")] public OnOffState? Value { get; set; } } }