Skip to content

Commit 8aa9b7f

Browse files
committed
Remove unused parameter
1 parent 54c3b2d commit 8aa9b7f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/adyen/services/balancePlatform/balances_api.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def initialize(client, version = DEFAULT_VERSION)
1313
end
1414

1515
# Create a balance webhook setting
16-
def create_webhook_setting(request, balance_platform_id, webhook_id, balance_webhook_setting_info, headers: {})
16+
def create_webhook_setting(request, balance_platform_id, webhook_id, headers: {})
1717
endpoint = '/balancePlatforms/{balancePlatformId}/webhooks/{webhookId}/settings'.gsub(/{.+?}/, '%s')
1818
endpoint = endpoint.gsub(%r{^/}, '')
1919
endpoint = format(endpoint, balance_platform_id, webhook_id)
@@ -53,7 +53,7 @@ def get_webhook_setting(balance_platform_id, webhook_id, setting_id, headers: {}
5353
end
5454

5555
# Update a balance webhook setting by id
56-
def update_webhook_setting(request, balance_platform_id, webhook_id, setting_id, balance_webhook_setting_info_update, headers: {})
56+
def update_webhook_setting(request, balance_platform_id, webhook_id, setting_id, headers: {})
5757
endpoint = '/balancePlatforms/{balancePlatformId}/webhooks/{webhookId}/settings/{settingId}'.gsub(/{.+?}/, '%s')
5858
endpoint = endpoint.gsub(%r{^/}, '')
5959
endpoint = format(endpoint, balance_platform_id, webhook_id, setting_id)

0 commit comments

Comments
 (0)