-
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.
- Loading branch information
1 parent
eaf259d
commit 27003a1
Showing
6 changed files
with
148 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?php | ||
namespace MangoPay; | ||
|
||
/** | ||
* WARNING!! | ||
* It's temporary entity and it will be removed in the future. | ||
* Please, contact with support before using these features or if you have any questions. | ||
* | ||
* Temporary immediate pay-in entity. | ||
*/ | ||
class TemporaryImmediatePayIn extends Transaction { | ||
|
||
/** | ||
* Payment card Id | ||
* @var string | ||
*/ | ||
public $PaymentCardId; | ||
|
||
/** | ||
* Credited wallet Id | ||
* @var string | ||
*/ | ||
public $CreditedWalletId; | ||
} |
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,48 @@ | ||
<?php | ||
namespace MangoPay; | ||
|
||
/** | ||
* WARNING!! | ||
* It's temporary entity and it will be removed in the future. | ||
* Please, contact with support before using these features or if you have any questions. | ||
* | ||
* Temporary Payment Card entity. | ||
*/ | ||
class TemporaryPaymentCard extends EntityBase { | ||
|
||
/** | ||
* User Id | ||
* @var string | ||
*/ | ||
public $UserId; | ||
|
||
/** | ||
* Culture | ||
* @var string | ||
*/ | ||
public $Culture; | ||
|
||
/** | ||
* Return URL | ||
* @var string | ||
*/ | ||
public $ReturnURL; | ||
|
||
/** | ||
* Template URL | ||
* @var string | ||
*/ | ||
public $TemplateURL; | ||
|
||
/** | ||
* Redirect URL | ||
* @var string | ||
*/ | ||
public $RedirectURL; | ||
|
||
/** | ||
* Alias | ||
* @var string | ||
*/ | ||
public $Alias; | ||
} |
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