mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 04:57:52 +00:00
Add integration of create new event from expedient
This commit is contained in:
@@ -2,9 +2,10 @@ import { Participant } from './participant.model';
|
||||
import { Folder } from './folder.model';
|
||||
|
||||
export class Despacho{
|
||||
distributionType: string;
|
||||
deadline: Date;
|
||||
userEmail: string;
|
||||
participants: Participant;
|
||||
dispatchFolder: Folder;
|
||||
DistributionType: string;
|
||||
CountryCode: string;
|
||||
TypeDeadline: string;
|
||||
UserEmail: string;
|
||||
UsersSelected: Participant[];
|
||||
DispatchFolder: Folder;
|
||||
}
|
||||
@@ -1,7 +1,8 @@
|
||||
export class Folder{
|
||||
nad:string;
|
||||
message:string;
|
||||
sourceSecFsId:string;
|
||||
souceType:string;
|
||||
sourceId:string;
|
||||
Nad:number;
|
||||
Subject: string;
|
||||
Message:string;
|
||||
SourceSecFsId:string;
|
||||
SouceType:string;
|
||||
SourceId:string;
|
||||
}
|
||||
@@ -1,5 +1,6 @@
|
||||
export class Participant{
|
||||
id: string;
|
||||
type: string;
|
||||
deadline: Date;
|
||||
UserId: string;
|
||||
UserType: string;
|
||||
|
||||
/* Deadline: Date; */
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
import { EventBody } from './eventbody.model';
|
||||
import { Participant } from './participant.model';
|
||||
|
||||
export class ProcessEvent{
|
||||
EventId: string;
|
||||
Subject: string;
|
||||
Body: EventBody;
|
||||
Location: string;
|
||||
CalendarId: string;
|
||||
CalendarName: string;
|
||||
StartDate: Date;
|
||||
EndDate: Date;
|
||||
EventType: string;
|
||||
Participants: Participant[];
|
||||
IsMeeting: boolean;
|
||||
IsRecurring: boolean;
|
||||
AppointmentState: number;
|
||||
TimeZone: string;
|
||||
Organizer: string;
|
||||
Categories: string[];
|
||||
HasAttachments: boolean;
|
||||
}
|
||||
Reference in New Issue
Block a user