public interface PaymentReceiver extends OsidReceiver
The payment receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted payment objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedPayments(Id notificationId,
IdList paymentIds)
The callback for notification of updated payments.
|
void |
deletedPayments(Id notificationId,
IdList paymentIds)
The callback for notification of deleted payments.
|
void |
newPayments(Id notificationId,
IdList paymentIds)
The callback for notifications of new payments.
|
down, upvoid newPayments(Id notificationId, IdList paymentIds)
notificationId - the notification IdpaymentIds - the Id of the new Payments
mandatory - This method must be implemented. void changedPayments(Id notificationId, IdList paymentIds)
notificationId - the notification IdpaymentIds - the Id of the updated
Payments mandatory - This method must be implemented.