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