using System.Text.Json.Serialization;
namespace LibMatrix.Homeservers.ImplementationDetails.Synapse.Models.Responses;
public class SynapseAdminUserRedactIdResponse {
[JsonPropertyName("redact_id")]
public string RedactionId { get; set; }
}
public class SynapseAdminRedactStatusResponse {
///
/// One of "scheduled", "active", "completed", "failed"
///
[JsonPropertyName("status")]
public string Status { get; set; }
///
/// Key: Event ID, Value: Error message
///
[JsonPropertyName("failed_redactions")]
public Dictionary FailedRedactions { get; set; }
}