-
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.
rename
InstantConversion
to Conversions
added quote endpoints
- Loading branch information
1 parent
c2500b8
commit d848c30
Showing
5 changed files
with
117 additions
and
9 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
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,43 @@ | ||
<?php | ||
|
||
namespace MangoPay; | ||
|
||
use MangoPay\Libraries\EntityBase; | ||
|
||
class Quote extends EntityBase | ||
{ | ||
/** | ||
* Expiration date | ||
* @var int | ||
*/ | ||
public $ExpirationDate; | ||
|
||
/** | ||
* @var string | ||
* @see \MangoPay\TransactionStatus | ||
*/ | ||
public $Status; | ||
|
||
/** | ||
* The time in seconds during which the quote is active and can be used for conversions. | ||
* @var int | ||
*/ | ||
public $Duration; | ||
|
||
/** | ||
* Debited funds | ||
* @var \MangoPay\Money | ||
*/ | ||
public $DebitedFunds; | ||
|
||
/** | ||
* Credited funds | ||
* @var \MangoPay\Money | ||
*/ | ||
public $CreditedFunds; | ||
|
||
/** | ||
* @var ConversionRate | ||
*/ | ||
var $ConversionRateResponse; | ||
} |
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