Notification Memo
(Mandatory for Graduation) Notifications provide essential visibility into job progress, ensuring users understand what is happening at each step.
Implementing job.createNotification() is mandatory for graduation. Without them, users are left without context, which weakens the overall experience and creates unnecessary uncertainty.
TypeScript
Python
job.createNotification(
`Your Notification`
);job.create_notification(
`Your Notification`
);Last updated