namespace AMWD.Net.Api.Cloudflare.Zones { /// /// Turn on or off Email Obfuscation. /// public class EmailObfuscation : ZoneSettingBase { /// /// Initializes a new instance of the class. /// public EmailObfuscation() { Id = ZoneSettingId.EmailObfuscation; } /// /// Current value of the zone setting. /// [JsonProperty("value")] public OnOffState? Value { get; set; } } }