UNPKG

knowmax-quest-types

Version:

Contains type definitions for communicating with Knowmax Quest.

14 lines 640 B
/** Describes labels provided by a security label provider of labels that grant access to a specific Knowmax Quest document. */ export interface ISecurityLabels { /** Quest id to which these securitylabels apply. */ questId: string; /** Collection of security labels that match with given Quest id. */ labels: string[]; /** Collection of labels for security modules that match with given Quest id. */ modules: string[]; /** Date time of last modification of these labels. */ modified: string; /** Describes origin of security labels. */ origin: string; } //# sourceMappingURL=ISecurityLabels.d.ts.map