Added DNS Records for Zone actions

This commit is contained in:
2024-11-11 10:23:19 +01:00
parent e561ad8ee7
commit 815c9e3e9d
38 changed files with 5581 additions and 69 deletions

View File

@@ -0,0 +1,34 @@
using System.Collections.Generic;
namespace AMWD.Net.Api.Cloudflare.Zones
{
/// <summary>
/// The DNS batch execution response.
/// </summary>
public class BatchDnsRecordsResult
{
/// <summary>
/// The deleted records.
/// </summary>
[JsonProperty("deletes")]
public IList<DnsRecord>? DeletedRecords { get; set; }
/// <summary>
/// The updated records.
/// </summary>
[JsonProperty("patches")]
public IList<DnsRecord>? UpdatedRecords { get; set; }
/// <summary>
/// The overwritten records.
/// </summary>
[JsonProperty("puts")]
public IList<DnsRecord>? OverwrittenRecords { get; set; }
/// <summary>
/// The created records.
/// </summary>
[JsonProperty("posts")]
public IList<DnsRecord>? CreatedRecords { get; set; }
}
}