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