-
Notifications
You must be signed in to change notification settings - Fork 41
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 #377 from Mangopay/rel/1.40.0
Rel/1.40.0
- Loading branch information
Showing
22 changed files
with
528 additions
and
106 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
var _ = require('underscore'); | ||
var PayInPaymentDetails = require('./PayInPaymentDetails'); | ||
|
||
var PayInPaymentDetailsGiropay = PayInPaymentDetails.extend({ | ||
defaults: { | ||
|
||
/** | ||
* Custom description to show on the user's bank statement. | ||
* It can be up to 10 char alpha-numeric and space. | ||
*/ | ||
StatementDescriptor: null | ||
} | ||
}); | ||
|
||
module.exports = PayInPaymentDetailsGiropay; |
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,25 @@ | ||
var _ = require('underscore'); | ||
var PayInPaymentDetails = require('./PayInPaymentDetails'); | ||
|
||
var PayInPaymentDetailsIdeal = PayInPaymentDetails.extend({ | ||
defaults: { | ||
|
||
/** | ||
* The BIC identifier of the end-user’s bank | ||
*/ | ||
Bic: null, | ||
|
||
/** | ||
* Name of the end-user’s bank | ||
*/ | ||
BankName: null, | ||
|
||
/** | ||
* Custom description to show on the user's bank statement. | ||
* It can be up to 10 char alpha-numeric and space. | ||
*/ | ||
StatementDescriptor: null | ||
} | ||
}); | ||
|
||
module.exports = PayInPaymentDetailsIdeal; |
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
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
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
Oops, something went wrong.