Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(cloudflare): Remove zone_id and zone_name in DNSRecord #253

Merged
merged 1 commit into from
Feb 4, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions cloudflare/src/endpoints/dns.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<Utc>,
/// When the record was created
Expand All @@ -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 {}
Expand Down