@@ -22,7 +22,7 @@ def create_rule(request, merchant_id, split_configuration_id, headers: {})
2222 @client . call_adyen_api ( @service , action , request , headers , @version )
2323 end
2424
25- # Create a split configuration
25+ # Create a split configuration profile
2626 def create_split_configuration ( request , merchant_id , headers : { } )
2727 endpoint = '/merchants/{merchantId}/splitConfigurations' . gsub ( /{.+?}/ , '%s' )
2828 endpoint = endpoint . gsub ( %r{^/} , '' )
@@ -32,7 +32,7 @@ def create_split_configuration(request, merchant_id, headers: {})
3232 @client . call_adyen_api ( @service , action , request , headers , @version )
3333 end
3434
35- # Delete a split configuration
35+ # Delete a split configuration profile
3636 def delete_split_configuration ( merchant_id , split_configuration_id , headers : { } )
3737 endpoint = '/merchants/{merchantId}/splitConfigurations/{splitConfigurationId}' . gsub ( /{.+?}/ , '%s' )
3838 endpoint = endpoint . gsub ( %r{^/} , '' )
@@ -42,7 +42,7 @@ def delete_split_configuration(merchant_id, split_configuration_id, headers: {})
4242 @client . call_adyen_api ( @service , action , { } , headers , @version )
4343 end
4444
45- # Delete a split configuration rule
45+ # Delete a rule
4646 def delete_split_configuration_rule ( merchant_id , split_configuration_id , rule_id , headers : { } )
4747 endpoint = '/merchants/{merchantId}/splitConfigurations/{splitConfigurationId}/rules/{ruleId}' . gsub ( /{.+?}/ , '%s' )
4848 endpoint = endpoint . gsub ( %r{^/} , '' )
@@ -52,7 +52,7 @@ def delete_split_configuration_rule(merchant_id, split_configuration_id, rule_id
5252 @client . call_adyen_api ( @service , action , { } , headers , @version )
5353 end
5454
55- # Get a split configuration
55+ # Get a split configuration profile
5656 def get_split_configuration ( merchant_id , split_configuration_id , headers : { } )
5757 endpoint = '/merchants/{merchantId}/splitConfigurations/{splitConfigurationId}' . gsub ( /{.+?}/ , '%s' )
5858 endpoint = endpoint . gsub ( %r{^/} , '' )
@@ -62,7 +62,7 @@ def get_split_configuration(merchant_id, split_configuration_id, headers: {})
6262 @client . call_adyen_api ( @service , action , { } , headers , @version )
6363 end
6464
65- # Get a list of split configurations
65+ # Get a list of split configuration profiles
6666 def list_split_configurations ( merchant_id , headers : { } )
6767 endpoint = '/merchants/{merchantId}/splitConfigurations' . gsub ( /{.+?}/ , '%s' )
6868 endpoint = endpoint . gsub ( %r{^/} , '' )
@@ -72,7 +72,7 @@ def list_split_configurations(merchant_id, headers: {})
7272 @client . call_adyen_api ( @service , action , { } , headers , @version )
7373 end
7474
75- # Update split conditions
75+ # Update the split conditions
7676 def update_split_conditions ( request , merchant_id , split_configuration_id , rule_id , headers : { } )
7777 endpoint = '/merchants/{merchantId}/splitConfigurations/{splitConfigurationId}/rules/{ruleId}' . gsub ( /{.+?}/ , '%s' )
7878 endpoint = endpoint . gsub ( %r{^/} , '' )
@@ -82,7 +82,7 @@ def update_split_conditions(request, merchant_id, split_configuration_id, rule_i
8282 @client . call_adyen_api ( @service , action , request , headers , @version )
8383 end
8484
85- # Update split configuration description
85+ # Update the description of the split configuration profile
8686 def update_split_configuration_description ( request , merchant_id , split_configuration_id , headers : { } )
8787 endpoint = '/merchants/{merchantId}/splitConfigurations/{splitConfigurationId}' . gsub ( /{.+?}/ , '%s' )
8888 endpoint = endpoint . gsub ( %r{^/} , '' )
0 commit comments