using System; using System.Collections.Generic; namespace AMWD.Net.Api.Cloudflare.Zones.Internals.Requests { internal class InternalUpdateSecurityTxtRequest { [JsonProperty("acknowledgements")] public IList? Acknowledgements { get; set; } [JsonProperty("canonical")] public IList? Canonical { get; set; } [JsonProperty("contact")] public IList? Contact { get; set; } [JsonProperty("enabled")] public bool? Enabled { get; set; } [JsonProperty("encryption")] public IList? Encryption { get; set; } [JsonProperty("expires")] public DateTime? Expires { get; set; } [JsonProperty("hiring")] public IList? Hiring { get; set; } [JsonProperty("policy")] public IList? Policy { get; set; } [JsonProperty("preferredLanguages")] public string? PreferredLanguages { get; set; } } }