Implemented GET call requests to see the events and also each event detail

This commit is contained in:
Tiago Kayaya
2020-08-19 14:21:42 +01:00
parent 63f7b08091
commit d8a6f73878
13 changed files with 135 additions and 87 deletions
+1
View File
@@ -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{
+6 -6
View File
@@ -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 -1
View File
@@ -1,4 +1,4 @@
export interface EventBody{
bodyType: string;
text: string;
Text: string;
}
+2 -2
View File
@@ -1,4 +1,4 @@
export interface EventPerson{
emailAddress: string;
text: string;
EmailAddress: string;
Name: string;
}
+4
View File
@@ -0,0 +1,4 @@
export interface EventOrganizer{
EmailAddress: string;
Text: string;
}