-
Notifications
You must be signed in to change notification settings - Fork 132
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #611 from Mangopay/feature/ideal-and-giropay-mops
feature /Added Ideal and Giropay mops
- Loading branch information
Showing
7 changed files
with
146 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?php | ||
|
||
namespace MangoPay; | ||
|
||
/** | ||
* Class represents Giropay type for mean of payment in Giropay entity | ||
*/ | ||
class PayInPaymentDetailsGiropay extends Libraries\Dto implements PayInPaymentDetails | ||
{ | ||
/** | ||
* Custom description to show on the user's bank statement. | ||
* It can be up to 10 char alphanumeric and space. | ||
* @var string | ||
*/ | ||
public $StatementDescriptor; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<?php | ||
|
||
namespace MangoPay; | ||
|
||
/** | ||
* Class represents IDEAL type for mean of payment in IDEAL entity | ||
*/ | ||
class PayInPaymentDetailsIdeal extends Libraries\Dto implements PayInPaymentDetails | ||
{ | ||
/** | ||
* The BIC identifier of the end-user’s bank | ||
* @var string | ||
*/ | ||
public $Bic; | ||
|
||
/** | ||
* Name of the end-user’s bank | ||
* @var string | ||
*/ | ||
public $BankName; | ||
|
||
|
||
/** | ||
* Custom description to show on the user's bank statement. | ||
* It can be up to 10 char alphanumeric and space. | ||
* @var string | ||
*/ | ||
public $StatementDescriptor; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters