Skip to content

Commit

Permalink
Merge pull request #563 from garsaud/patch-1
Browse files Browse the repository at this point in the history
Added `CardId` property to PayInExecutionDetailsDirect and used “int” as types for identifiers
  • Loading branch information
iulian03 authored Oct 26, 2022
2 parents 42a7a57 + 5de2656 commit 61a9b23
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion MangoPay/PayIn.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class PayIn extends Transaction
{
/**
* Credited wallet Id
* @var int
* @var string
*/
public $CreditedWalletId;

Expand Down
6 changes: 6 additions & 0 deletions MangoPay/PayInExecutionDetailsDirect.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,12 @@ class PayInExecutionDetailsDirect extends Libraries\Dto implements PayInExecutio
*/
public $Applied3DSVersion;

/**
* Card Id
* @var string
*/
public $CardId;

public function GetSubObjects()
{
$subObjects = parent::GetSubObjects();
Expand Down

0 comments on commit 61a9b23

Please sign in to comment.