red-ui/libs/red-domain/src/lib/redaction-log/add-redaction.request.ts
2022-03-23 15:58:00 +02:00

18 lines
504 B
TypeScript

import { IRectangle } from '../geometry';
import { List } from '@iqser/common-ui';
import { DictionaryEntryType } from './dictionary-entry-types';
export interface IAddRedactionRequest {
addToDictionary?: boolean;
addToDossierDictionary?: boolean;
dictionaryEntryType?: DictionaryEntryType;
comment?: { text: string };
legalBasis?: string;
positions?: List<IRectangle>;
reason?: string;
type?: string;
value?: string;
section?: string;
rectangle?: boolean;
}