Skip to content

Commit

Permalink
[ECP-9272] Allow Application Info in request parameters for modificat…
Browse files Browse the repository at this point in the history
…ions (#674)

* [ECP-9272] Allow Application Info in request params for Cancels, Refunds, and Captures

* [ECP-9272] Allow Application Info in request params for Reversals

---------

Co-authored-by: sushmita <[email protected]>
  • Loading branch information
SushmitaThakur and sushmita authored Jul 5, 2024
1 parent da69b2f commit 31673f0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/Adyen/Service/ResourceModel/Checkout/Cancels.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class Cancels extends \Adyen\Service\AbstractCheckoutResource
*
* @var bool
*/
protected $allowApplicationInfo = false;
protected $allowApplicationInfo = true;

/**
* Payments constructor.
Expand Down
2 changes: 1 addition & 1 deletion src/Adyen/Service/ResourceModel/Checkout/Captures.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class Captures extends \Adyen\Service\AbstractCheckoutResource
*
* @var bool
*/
protected $allowApplicationInfo = false;
protected $allowApplicationInfo = true;

/**
* Payments constructor.
Expand Down
2 changes: 1 addition & 1 deletion src/Adyen/Service/ResourceModel/Checkout/Refunds.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class Refunds extends \Adyen\Service\AbstractCheckoutResource
*
* @var bool
*/
protected $allowApplicationInfo = false;
protected $allowApplicationInfo = true;

/**
* Payments constructor.
Expand Down
2 changes: 1 addition & 1 deletion src/Adyen/Service/ResourceModel/Checkout/Reversals.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class Reversals extends \Adyen\Service\AbstractCheckoutResource
*
* @var bool
*/
protected $allowApplicationInfo = false;
protected $allowApplicationInfo = true;

/**
* Payments constructor.
Expand Down

0 comments on commit 31673f0

Please sign in to comment.