namespace AMWD.Net.Api.Cloudflare.Zones { /// /// Request to create a new zone. /// /// /// Request to create a new zone. /// /// The account identifier. /// The domain name. public class CreateZoneRequest(string accountId, string name) { /// /// The account identifier. /// public string AccountId { get; set; } = accountId; /// /// The domain name. /// public string Name { get; set; } = name; /// /// The zone type. /// /// /// /// A full zone implies that DNS is hosted with Cloudflare. /// A partial zone is typically a partner-hosted zone or a CNAME setup. /// /// /// If not set, Cloudflare will use as default. /// /// public ZoneType? Type { get; set; } } }