namespace AMWD.Net.Api.Cloudflare.Zones
{
///
/// Represents a request to create a zone.
///
public class CreateZoneRequest
{
///
/// Initializes a new instance of the class.
///
/// The domain name.
public CreateZoneRequest(string name)
{
Name = name;
}
///
/// The account identifier.
///
public string? AccountId { get; set; }
///
/// The domain name.
///
public string Name { get; set; }
///
/// 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; }
}
}