namespace AMWD.Net.Api.Cloudflare.Zones { /// /// 0-RTT session resumption enabled for this zone. /// public class ZeroRTT : ZoneSettingBase { /// /// Initializes a new instance of the class. /// public ZeroRTT() { Id = ZoneSettingId.ZeroRTT; } /// /// Current value of the zone setting. /// [JsonProperty("value")] public OnOffState Value { get; set; } } }