plutoapi-v2/src/models/partyplaner/event/Invite.interface.ts

11 lines
180 B
TypeScript

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