34 lines
853 B
TypeScript
34 lines
853 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.
|
|
*/
|
|
|
|
/**
|
|
* 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;
|
|
}
|