2021-01-11 15:54:13 +02:00

50 lines
1.2 KiB
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.
*/
/**
* Object containing a list of dictionary entries and colors of an entry type.
*/
export interface Dictionary {
/**
* True if the entries in this type should be matched case insensitively, default is false.
*/
caseInsensitive?: boolean;
/**
* The list of dictionary entries of an entry type.
*/
entries?: Array<string>;
/**
* The value of color must be a correct hex color
*/
hexColor?: string;
/**
* True if the type just for hint, not for redaction, default is false.
*/
hint?: boolean;
/**
* The rank of this dictionary, higher rank means higher importance.
*/
rank?: number;
/**
* True if the type just for recommendations, not for redaction, default is false.
*/
recommendation?: boolean;
/**
* The RuleSet Id for this type
*/
ruleSetId?: string;
/**
* The description of this dictionary
*/
description?: string;
}