namespace AMWD.Net.Api.Cloudflare.Zones
{
///
/// A Cloudflare zone hold.
/// Source
///
public class ZoneHold
{
///
/// Whether the zone is on hold.
///
[JsonProperty("hold")]
public bool? Hold { get; set; }
///
/// The hold is enabled if the value is in the past.
///
[JsonProperty("hold_after")]
public DateTime? HoldAfter { get; set; }
///
/// Whether to include subdomains in the hold.
///
[JsonProperty("include_subdomains")]
public bool? IncludeSubdomains { get; set; }
}
}