namespace AMWD.Net.Api.Cloudflare.Zones { /// /// Enrollment in the SSL/TLS Recommender service which tries to detect and /// recommend (by sending periodic emails) the most secure SSL/TLS setting your /// origin servers support. /// [Obsolete("SSL/TLS Recommender has been decommissioned in favor of Automatic SSL/TLS: ssl_automatic_mode")] public class SSLRecommender : ZoneSettingBase { /// /// Initializes a new instance of the class. /// public SSLRecommender() { Id = ZoneSettingId.SSLRecommender; } /// /// Current value of the zone setting. /// [JsonProperty("value")] public string? Value { get; set; } } }