Files
kopokopo-go/pkg/webhooks.go
T
b1ackd0t 0d92d846c6 Initial commit
Signed-off-by: GitHub <noreply@github.com>
2022-07-09 17:31:31 +00:00

41 lines
1.4 KiB
Go

package kopokopo
// func (sdk kSDK) CreateWebhook(webookReq CreateWebhookReq) (string, error) {
// panic("Not implemented")
// }
// // Before processing webhook events, make sure that they originated from Kopo Kopo
// func (sdk kSDK) ValidateWebhook() error {
// panic("Not implemented")
// }
// // Notifies your application when a Buygoods Transaction has been received.
// func (sdk kSDK) C2BSubscription(buyGoodsReq BuyGoodsTrans) (string, error) {
// panic("Not implemented")
// }
// // Notifies your application when a B2b (External Till to Till transaction) has been received.
// // These are payments recieved from other tills and not subscribers.
// func (sdk kSDK) B2BSubscription(b2bReq BuyGoodsTrans) (string, error) {
// panic("Not implemented")
// }
// // Notifies your application when another Kopo Kopo merchant transfers funds to your Kopo Kopo merchant account (Merchant to Merchant)
// func (sdk kSDK) M2MSubscription(m2mReq BuyGoodsTrans) (string, error) {
// panic("Not implemented")
// }
// // Notifies your application when a Buygoods Transaction has been reversed
// func (sdk kSDK) C2BReversalSubscription(c2bReq BuyGoodsTrans) error {
// panic("Not implemented")
// }
// // Parameters contained in a settlement_transfer_completed webhook
// func (sdk kSDK) SettlementSub(setReq BuyGoodsTrans) error {
// panic("Not implemented")
// }
// func (sdk kSDK) CusomerCreationSub(cReq CustomerReq) error {
// panic("Not implemented")
// }