namespace AMWD.Net.Api.Cloudflare.Zones
{
///
/// Represents a request to remove a zone hold.
///
public class RemoveZoneHoldRequest
{
///
/// Initializes a new instance of the class.
///
/// The zone identifier.
public RemoveZoneHoldRequest(string zoneId)
{
ZoneId = zoneId;
}
///
/// The zone identifier.
///
public string ZoneId { get; set; }
///
/// If it is provided, the hold will be temporarily disabled,
/// then automatically re-enabled by the system at the time specified in this timestamp.
/// Otherwise, the hold will be disabled indefinitely.
///
public DateTime? HoldAfter { get; set; }
}
}