interface RedactionPointerResponse {
    from?: number;
    pointer?: string;
    reason?: string;
    redactionId?: string;
    to?: number;
}

Hierarchy

  • Record<string, unknown>
    • RedactionPointerResponse

Properties

from?: number

Starting character index where redaction was applied

pointer?: string

JSON pointer indicating where the redaction was applied

reason?: string

Reason for the redaction

redactionId?: string

Unique identifier for this redaction. Can be used to restore the redacted content later.

to?: number

Ending character index where redaction was applied