Notification Memo
(Mandatory for Graduation) Notifications provide essential visibility into job progress, ensuring users understand what is happening at each step.
Type
TypeScript
Python
await job.createNotification(
"Your Notification"
);job.create_notification(
"Your Notification"
);await job.createPayableNotification(
"Your Notification"
new FareAmount(payoutAmount, config.baseFare)
);job.create_payable_notification(
"Your Notification"
FareAmount(payout_amount, config.base_fare)
);Last updated