namespace AMWD.Net.Api.Cloudflare.Zones
{
///
/// Request to overwrite a DNS record.
///
///
/// Initializes a new instance of the class.
///
/// The DNS record identifier.
/// The zone identifier.
/// DNS record name (or @ for the zone apex).
/// Record type.
public class OverwriteDnsRecordRequest(string id, string zoneId, string name, DnsRecordType type) : CreateDnsRecordRequest(zoneId, name, type)
{
///
/// The DNS record identifier.
///
public string Id { get; set; } = id;
}
}