21 lines
517 B
TypeScript
21 lines
517 B
TypeScript
import { IRectangle } from '../geometry';
|
|
import { LogEntryStatus } from './types';
|
|
|
|
export interface IManualRedactionEntry {
|
|
addToDictionary?: boolean;
|
|
addToDossierDictionary?: boolean;
|
|
annotationId?: string;
|
|
fileId?: string;
|
|
legalBasis?: string;
|
|
positions?: IRectangle[];
|
|
processedDate?: string;
|
|
reason?: string;
|
|
requestDate?: string;
|
|
softDeletedTime?: string;
|
|
status?: LogEntryStatus;
|
|
type?: string;
|
|
user?: string;
|
|
value?: string;
|
|
rectangle?: boolean;
|
|
}
|