namespace AMWD.Net.Api.Cloudflare.Zones { /// /// Cloudflare adds a CF-IPCountry HTTP header containing the country code that /// corresponds to the visitor. /// public class IPGeolocation : ZoneSettingBase { /// /// Initializes a new instance of the class. /// public IPGeolocation() { Id = ZoneSettingId.IPGeolocation; } /// /// The status of adding the IP Geolocation Header. /// [JsonProperty("value")] public OnOffState? Value { get; set; } } }