namespace AMWD.Net.Api.Cloudflare.Zones { /// /// If enabled, any http:// URL is converted to https:// through a 301 /// redirect. /// public class AlwaysUseHTTPS : ZoneSettingBase { /// /// Initializes a new instance of the class. /// public AlwaysUseHTTPS() { Id = ZoneSettingId.AlwaysUseHTTPS; } /// /// Current value of the zone setting. /// [JsonProperty("value")] public OnOffState? Value { get; set; } } }