35 lines
936 B
TypeScript
35 lines
936 B
TypeScript
/**
|
|
* API Documentation for Redaction Gateway
|
|
* Description for redaction
|
|
*
|
|
* OpenAPI spec version: 1.0
|
|
*
|
|
*
|
|
* NOTE: This class is auto generated by the swagger code generator program.
|
|
* https://github.com/swagger-api/swagger-codegen.git
|
|
* Do not edit the class manually.
|
|
*/
|
|
import { Rectangle } from './rectangle';
|
|
|
|
export interface ManualRedactionEntry {
|
|
addToDictionary?: boolean;
|
|
id?: string;
|
|
legalBasis?: string;
|
|
positions?: Array<Rectangle>;
|
|
reason?: string;
|
|
status?: ManualRedactionEntry.StatusEnum;
|
|
type?: string;
|
|
user?: string;
|
|
value?: string;
|
|
requestDate?: string;
|
|
processedDate?: string;
|
|
}
|
|
export namespace ManualRedactionEntry {
|
|
export type StatusEnum = 'REQUESTED' | 'APPROVED' | 'DECLINED';
|
|
export const StatusEnum = {
|
|
REQUESTED: 'REQUESTED' as StatusEnum,
|
|
APPROVED: 'APPROVED' as StatusEnum,
|
|
DECLINED: 'DECLINED' as StatusEnum
|
|
};
|
|
}
|