This commit is contained in:
tiago.kayaya
2021-04-28 11:12:17 +01:00
8 changed files with 172 additions and 48 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
}