namespace AMWD.Net.Api.Cloudflare.Zones { /// /// The zone metadata. /// public class ZoneMetaData { /// /// The zone is only configured for CDN. /// [JsonProperty("cdn_only")] public bool CdnOnly { get; set; } /// /// Number of Custom Certificates the zone can have. /// [JsonProperty("custom_certificate_quota")] public int CustomCertificateQuota { get; set; } /// /// The zone is only configured for DNS. /// [JsonProperty("dns_only")] public bool DnsOnly { get; set; } /// /// The zone is setup with Foundation DNS. /// [JsonProperty("foundation_dns")] public bool FoundationDns { get; set; } /// /// Number of Page Rules a zone can have. /// [JsonProperty("page_rule_quota")] public int PageRuleQuota { get; set; } /// /// The zone has been flagged for phishing. /// [JsonProperty("phishing_detected")] public bool PhishingDetected { get; set; } /// /// Step. /// [JsonProperty("step")] public int Step { get; set; } } }