@@ -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