Interface Reminder

interface Reminder {
    author: User;
    createdAt: string;
    date: string;
    hash: string;
    name: string;
    occurrence: { last: null | string; next: null | string };
    organization: { id: string };
    schedule: { location: string };
    security_groups: { id: string }[];
    users: User[];
}

Properties

author: User
createdAt: string
date: string
hash: string
name: string
occurrence: { last: null | string; next: null | string }
organization: { id: string }
schedule: { location: string }
security_groups: { id: string }[]
users: User[]