Notification Memo
(Mandatory for Graduation) Notifications provide essential visibility into job progress, ensuring users understand what is happening at each step.
Implementing job.createNotification() / job.createPayableNotification() is mandatory for graduation. Without them, users are left without context, which weakens the overall experience and creates unnecessary uncertainty.
Type
TypeScript
Python
Text-based Notification
await job.createNotification(
"Your Notification"
);job.create_notification(
"Your Notification"
);Notification with Funds Transfer
await job.createPayableNotification(
"Your Notification"
new FareAmount(payoutAmount, config.baseFare)
);job.create_payable_notification(
"Your Notification"
FareAmount(payout_amount, config.base_fare)
);Last updated