/** * 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 { /** * If true the ui will add a action to add values to dictionary */ addToDictionaryAction?: boolean; /** * True if the entries in this type should be matched case insensitively, default is false. */ caseInsensitive?: boolean; /** * The description of the dictionary type */ description?: string; /** * The DossierTemplate Id for this type */ dossierTemplateId?: string; /** * The list of dictionary entries of an entry type. */ entries?: Array; /** * 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; /** * Label of the type */ label?: string; /** * 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; }