Skip to content
This repository has been archived by the owner on Dec 25, 2024. It is now read-only.

Commit

Permalink
Remove DataRedactionStatus enum because of serialization issues (#242)
Browse files Browse the repository at this point in the history
  • Loading branch information
mburumaxwell authored Jun 28, 2024
1 parent 16a7a36 commit bf1f408
Showing 1 changed file with 1 addition and 18 deletions.
19 changes: 1 addition & 18 deletions src/FaluSdk/Core/DataRedaction.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ public class DataRedaction
/// <summary>
/// Indicates whether the object and its related objects have been redacted or not.
/// </summary>
public DataRedactionStatus Status { get; set; }
public string? Status { get; set; }

/// <summary>
/// Time at which the redaction was requested.
Expand All @@ -22,20 +22,3 @@ public class DataRedaction
/// </summary>
public DateTimeOffset? Completed { get; set; }
}

/// <summary>
/// Represents the status of a redaction.
/// </summary>
public enum DataRedactionStatus
{
/// <summary>
/// The object and its related objects have been redacted.
/// </summary>
Redacted,

/// <summary>
/// The object has been redacted, and its related objects are in the process of being redacted.
/// This process may take up to a week.
/// </summary>
Processing,
}

0 comments on commit bf1f408

Please sign in to comment.