18 lines
504 B
TypeScript
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;
|
|
}
|