mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-18 20:47:54 +00:00
Implemented GET call requests to see the events and also each event detail
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
import { EventBody } from './eventbody.model';
|
||||
import { EventPerson } from './eventperson.model';
|
||||
import { EventAttachment } from './eventattachment.model';
|
||||
import { EventOrganizer } from './organizer.model';
|
||||
|
||||
export interface Event{
|
||||
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
export interface EventAttachment{
|
||||
name: string;
|
||||
ownerId: string;
|
||||
subject: string;
|
||||
location: string;
|
||||
externalEntities: string;
|
||||
createdIn: string;
|
||||
Name: string;
|
||||
OwnerId: string;
|
||||
Subject: string;
|
||||
Location: string;
|
||||
ExternalEntities: string;
|
||||
CreatedIn: string;
|
||||
}
|
||||
@@ -1,4 +1,4 @@
|
||||
export interface EventBody{
|
||||
bodyType: string;
|
||||
text: string;
|
||||
Text: string;
|
||||
}
|
||||
@@ -1,4 +1,4 @@
|
||||
export interface EventPerson{
|
||||
emailAddress: string;
|
||||
text: string;
|
||||
EmailAddress: string;
|
||||
Name: string;
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
export interface EventOrganizer{
|
||||
EmailAddress: string;
|
||||
Text: string;
|
||||
}
|
||||
Reference in New Issue
Block a user