namespace AMWD.Net.Api.Cloudflare.Zones
{
///
/// Control how long resources cached by client browsers remain valid.
///
public class BrowserCacheTTL : ZoneSettingBase
{
///
/// Initializes a new instance of the class.
///
public BrowserCacheTTL()
{
Id = ZoneSettingId.BrowserCacheTTL;
}
///
/// The number of seconds to cache resources for.
/// The API prohibits setting this to 0 for non-Enterprise domains.
///
[JsonProperty("value")]
public int? Value { get; set; }
}
}