namespace AMWD.Net.Api.Cloudflare { /// /// An error message. /// Source /// public class ErrorData { /// /// The error code. /// [JsonProperty("code")] public int? Code { get; set; } /// /// A link to documentation about the error. /// [JsonProperty("documentation_url")] public string? DocumentationUrl { get; set; } /// /// The error message. /// [JsonProperty("message")] public string? Message { get; set; } /// /// The source of the error. /// [JsonProperty("source")] public ErrorDataSource? Source { get; set; } } /// /// The source of the error. /// Source /// public class ErrorDataSource { /// /// The pointer to the source of the error. /// [JsonProperty("pointer")] public string? Pointer { get; set; } } }