namespace AMWD.Net.Api.Cloudflare.Zones
{
///
/// Request to create a new zone.
///
public class CreateZoneRequest
{
///
/// The account identifier.
///
public string AccountId { get; set; }
///
/// The domain name.
///
public string Name { get; set; }
///
/// 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.
///
public ZoneType Type { get; set; }
}
}