diff --git a/cloudflare/src/endpoints/dns.rs b/cloudflare/src/endpoints/dns.rs index b0766a9..ce21d10 100644 --- a/cloudflare/src/endpoints/dns.rs +++ b/cloudflare/src/endpoints/dns.rs @@ -188,8 +188,6 @@ pub struct DnsRecord { pub name: String, /// Time to live for DNS record. Value of 1 is 'automatic' pub ttl: u32, - /// Zone identifier tag - pub zone_id: String, /// When the record was last modified pub modified_on: DateTime, /// When the record was created @@ -203,8 +201,6 @@ pub struct DnsRecord { pub id: String, /// Whether the record is receiving the performance and security benefits of Cloudflare pub proxied: bool, - /// The domain of the record - pub zone_name: String, } impl ApiResult for DnsRecord {}