2021-08-19 16:39:26 +01:00
|
|
|
export interface Attachment {
|
|
|
|
|
SourceId: string;
|
|
|
|
|
ApplicationId: number;
|
|
|
|
|
}
|
|
|
|
|
export interface AttachmentList {
|
|
|
|
|
ProcessInstanceID?: string;
|
|
|
|
|
Attachments?: Attachment[];
|
2023-07-25 13:47:48 +01:00
|
|
|
DraftIds?: any
|
2021-08-19 16:39:26 +01:00
|
|
|
}
|
|
|
|
|
export interface Excludetask {
|
|
|
|
|
serialNumber: string;
|
2021-07-27 21:21:16 +01:00
|
|
|
action: string;
|
2021-08-19 16:39:26 +01:00
|
|
|
ActionTypeId?: number;
|
2021-07-27 21:21:16 +01:00
|
|
|
dataFields: {
|
|
|
|
|
ReviewUserComment?: string,
|
|
|
|
|
Note?: any
|
2023-07-25 13:47:48 +01:00
|
|
|
InstanceIDNew?: any
|
|
|
|
|
DraftIds?: any
|
2021-07-27 21:21:16 +01:00
|
|
|
}
|
2021-08-19 16:39:26 +01:00
|
|
|
FolderId?: number;
|
|
|
|
|
AttachmentList?: AttachmentList | any;
|
2021-07-27 21:21:16 +01:00
|
|
|
}
|