Files
plutoapi-v2/src/models/partyplaner/event/Invite.interface.ts
T
Paddy 7ee812bbb3
Jenkins Production Deployment
API-23: Refactoring for better architecture (#12)
Endpoints are separated into distinct packages and interfaces are extracted into files

Co-authored-by: Patrick Müller <patrick@mueller-patrick.tech>
Reviewed-on: #12
Co-authored-by: Patrick Müller <patrick@plutodev.de>
Co-committed-by: Patrick Müller <patrick@plutodev.de>
2021-08-28 17:22:07 +00:00

11 lines
195 B
TypeScript

/**
* Used in the getEventData method
*/
export interface Invite {
inviteId: string;
inviteKey: string;
validUntil: Date;
alreadyUsed: boolean;
invitedPersonName: string;
}