Skip to main content

EventReminders Model

Overview

event-reminder.model.ts

Fields

FieldTypeDescriptionRequired
idstringUnique identifier for the event reminder.
titlestringTitle or name of the event.Displayed to users in calendar UIs or notification prompts.
descriptionstringA short explanation of the reminder's purpose or content.
startdateStart date and time of the event.Important for scheduling when reminders or notifications should fire.
enddateEnd date and time of the event.Can define duration or block off calendar time.
allDaybooleanBoolean flag indicating if the event lasts the entire day.
participantsarrayparticipants field
created_atdateTimestamp when the event reminder was created.
modified_atdateTimestamp when the event reminder was last modified.
packageIdstringIdentifier for the related package, if applicable.
orgGroupIdstringorgGroupId 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"
}