namespace AMWD.Net.Api.Cloudflare.Zones
{
///
/// Represents a request to update a domain.
/// Source
///
public class UpdateDomainRequest
{
///
/// Initializes a new instance of the class.
///
/// Identifier.
/// Domain name.
public UpdateDomainRequest(string accountId, string domainName)
{
AccountId = accountId;
DomainName = domainName;
}
///
/// Identifier.
///
public string AccountId { get; set; }
///
/// Domain name.
///
public string DomainName { get; set; }
///
/// Auto-renew controls whether subscription is automatically renewed upon domain expiration.
///
public bool? AutoRenew { get; set; }
///
/// Shows whether a registrar lock is in place for a domain.
///
public bool? Locked { get; set; }
///
/// Privacy option controls redacting WHOIS information.
///
public bool? Privacy { get; set; }
}
}