fix swift snippet

This commit is contained in:
Roei Erez
2023-12-14 10:13:04 +02:00
parent 28b5e68b0d
commit 5f541d4803

View File

@@ -15,6 +15,6 @@ func webhook(sdk: BlockingBreezServices) throws {
func paymentWebhook(sdk: BlockingBreezServices) { func paymentWebhook(sdk: BlockingBreezServices) {
// ANCHOR: register-payment-webook // ANCHOR: register-payment-webook
sdk.registerWebhook(webhookUrl: "https://your-nds-service.com/notify?platform=ios&token=<PUSH_TOKEN>").await? sdk.registerWebhook(webhookUrl: "https://your-nds-service.com/notify?platform=ios&token=<PUSH_TOKEN>")
// ANCHOR_END: register-payment-webook // ANCHOR_END: register-payment-webook
} }