namespace AMWD.Net.Api.Cloudflare.Zones
{
///
/// Maximum time between two read operations from origin.
///
public class ProxyReadTimeout : ZoneSettingBase
{
///
/// Initializes a new instance of the class.
///
public ProxyReadTimeout()
{
Id = ZoneSettingId.ProxyReadTimeout;
}
///
/// Current value of the zone setting.
///
[JsonProperty("value")]
public int Value { get; set; }
}
}