namespace AMWD.Net.Api.Cloudflare.Zones
{
///
/// Turn on or off Cloudflare error pages generated from issues sent from the origin
/// server. If enabled, this setting triggers error pages issued by the origin.
///
public class OriginErrorPagePassThru : ZoneSettingBase
{
///
/// Initializes a new instance of the class.
///
public OriginErrorPagePassThru()
{
Id = ZoneSettingId.OriginErrorPagePassThru;
}
///
/// The status of Origin Error Page Passthru.
///
[JsonProperty("value")]
public OnOffState? Value { get; set; }
}
}