namespace AMWD.Net.Api.Cloudflare.Zones { /// /// Turn on or off the True-Client-IP Header feature of the Cloudflare Network app. /// public class TrueClientIPHeader : ZoneSettingBase { /// /// Initializes a new instance of the class. /// public TrueClientIPHeader() { Id = ZoneSettingId.TrueClientIPHeader; } /// /// The status of True Client IP Header. /// [JsonProperty("value")] public OnOffState? Value { get; set; } } }