namespace AMWD.Net.Api.Cloudflare.Zones { /// /// Opportunistic Encryption allows browsers to access HTTP URIs over an encrypted /// TLS channel. It's not a substitute for HTTPS, but provides additional security /// for otherwise vulnerable requests. /// public class OpportunisticEncryption : ZoneSettingBase { /// /// Initializes a new instance of the class. /// public OpportunisticEncryption() { Id = ZoneSettingId.OpportunisticEncryption; } /// /// The status of Opportunistic Encryption. /// [JsonProperty("value")] public OnOffState? Value { get; set; } } }