EventReminders Model
Overview
event-reminder.model.ts
Fields
| Field | Type | Description | Required |
|---|---|---|---|
| id | string | Unique identifier for the event reminder. | ❌ |
| title | string | Title or name of the event.Displayed to users in calendar UIs or notification prompts. | ✅ |
| description | string | A short explanation of the reminder's purpose or content. | ✅ |
| start | date | Start date and time of the event.Important for scheduling when reminders or notifications should fire. | ❌ |
| end | date | End date and time of the event.Can define duration or block off calendar time. | ❌ |
| allDay | boolean | Boolean flag indicating if the event lasts the entire day. | ❌ |
| participants | array | participants field | ❌ |
| created_at | date | Timestamp when the event reminder was created. | ❌ |
| modified_at | date | Timestamp when the event reminder was last modified. | ❌ |
| packageId | string | Identifier for the related package, if applicable. | ❌ |
| orgGroupId | string | orgGroupId field | ❌ |
Sample JSON
{
"id": "example_value",
"title": "example_value",
"description": "example_value",
"start": "example_value",
"end": "example_value",
"allDay": "example_value",
"participants": "example_value",
"created_at": "example_value",
"modified_at": "example_value",
"packageId": "example_value",
"orgGroupId": "example_value"
}