knowmax-quest-types
Version:
Contains type definitions for communicating with Knowmax Quest.
16 lines • 626 B
TypeScript
export interface IDocumentPredecessor {
/** Internal identification. */
id: number;
/** Id of document of which predecessor is decribed. */
documentId: number;
/** QuestId of predecessor. */
documentQuestId: string;
/** Resolved title of document referenced by documentQuestId. Unset if documentQuestId is invalid. */
documentQuestTitle?: string;
modified: string;
modifiedBy: string;
created: string;
createdBy: string;
}
export type IDocumentPredecessorEditable = Pick<IDocumentPredecessor, 'documentId' | 'documentQuestId'>;
//# sourceMappingURL=IDocumentPredecessor.d.ts.map