namespace AMWD.Net.Api.Cloudflare.Zones { /// /// Privacy Pass. /// [Obsolete("Privacy Pass v1 was deprecated in 2023.")] public class PrivacyPass : ZoneSettingBase { /// /// Initializes a new instance of the class. /// public PrivacyPass() { Id = ZoneSettingId.PrivacyPass; } /// /// Current value of the zone setting. /// [JsonProperty("value")] public OnOffState Value { get; set; } } }