using System;
using System.Collections.Generic;
namespace AMWD.Net.Api.Cloudflare.Zones
{
///
/// The security TXT record.
///
public class SecurityTxt
{
///
/// The acknowledgements.
///
[JsonProperty("acknowledgements")]
public IList? Acknowledgements { get; set; }
///
/// The canonical.
///
[JsonProperty("canonical")]
public IList? Canonical { get; set; }
///
/// The contact.
///
[JsonProperty("contact")]
public IList? Contact { get; set; }
///
/// A value indicating whether this security.txt is enabled.
///
[JsonProperty("enabled")]
public bool? Enabled { get; set; }
///
///The encryption.
///
[JsonProperty("encryption")]
public IList? Encryption { get; set; }
///
/// The expiry.
///
[JsonProperty("expires")]
public DateTime? Expires { get; set; }
///
/// The hiring.
///
[JsonProperty("hiring")]
public IList? Hiring { get; set; }
///
/// The policies.
///
[JsonProperty("policy")]
public IList? Policy { get; set; }
///
/// The preferred languages.
///
[JsonProperty("preferredLanguages")]
public string? PreferredLanguages { get; set; }
}
}