Class RedactRequest
Represents a request to redact personal data from a specific transaction.
public class RedactRequest
- Inheritance
-
RedactRequest
- Inherited Members
Properties
Id
Gets or sets the transaction ID to redact. This is the unique identifier of the record to be redacted (e.g., an SMS message ID or call UUID).
[JsonProperty("id")]
public string Id { get; set; }
Property Value
Product
Gets or sets the product that the transaction ID relates to. See RedactionProduct for available products.
[JsonProperty("product")]
public RedactionProduct? Product { get; set; }
Property Value
Type
Gets or sets the type of transaction. Required when redacting SMS data to specify whether it was an inbound or outbound message. See RedactionType.
[JsonProperty("type")]
public RedactionType? Type { get; set; }