Add task from aganda

This commit is contained in:
Peter Maquiran
2021-04-26 13:29:19 +01:00
parent 8f76806ae4
commit 983f5bf385
7 changed files with 117 additions and 29 deletions
+1
View File
@@ -9,6 +9,7 @@ export class Attachment {
CreateDate: string;
Stakeholders: string;
Link: string;
ApplicationId?: string;
//Data: any;
}
+1
View File
@@ -3,6 +3,7 @@ import { EventPerson } from './eventperson.model';
import { SearchDocument } from './search-document';
export class Event{
ParentId?: string;
EventId: string;
Subject: string;
Body: EventBody;
+26
View File
@@ -0,0 +1,26 @@
export class ProcessTask {
SerialNumber: string
actions: string;
formURL: string
originator: {
email: string,
manager: string,
displayName: "",
fqn: string,
username: string
}
serialNumber: string
taskStartDate: string
workflowDisplayName: string
workflowID: number
workflowInstanceDataFields: {
FsId: string,
MessageId: string,
UserId: string,
DocId: string,
ViewerRequest: string,
}
workflowInstanceFolio: string
workflowInstanceID: number
workflowName: string
}