Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | 417x 417x 417x 417x 417x 417x 417x 417x | export interface EventLogItem {
eventLogItemId: string;
action: EventLogAction;
isSeen: boolean;
programItemId: string;
programItemStartTime: string;
createdAt: string;
}
export enum EventLogAction {
NEW_ASSIGNMENT = "newAssignment",
NO_ASSIGNMENT = "noAssignment",
PROGRAM_ITEM_CANCELLED = "programItemCancelled",
PROGRAM_ITEM_DELETED = "programItemDeleted",
PROGRAM_ITEM_NO_KONSTI_SIGNUP_ANYMORE = "programItemNoKonstiSignupAnymore",
PROGRAM_ITEM_NO_LOTTERY_ANYMORE = "programItemNoLotteryAnymore",
PROGRAM_ITEM_MOVED = "programItemMoved",
}
|