namespace AMWD.Net.Api.Cloudflare.Zones
{
///
/// TLS Client Auth requires Cloudflare to connect to your origin server using a
/// client certificate (Enterprise Only).
///
public class TLSClientAuth : ZoneSettingBase
{
///
/// Initialize a new instance of the class.
///
public TLSClientAuth()
{
Id = ZoneSettingId.TLSClientAuth;
}
///
/// Current value of the zone setting.
///
[JsonProperty("value")]
public OnOffState Value { get; set; }
}
}