-
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.
added quoted conversions between client wallets
- Loading branch information
Iulian Masar
committed
Feb 11, 2025
1 parent
914939b
commit 8d25db8
Showing
4 changed files
with
86 additions
and
2 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,45 @@ | ||
<?php | ||
|
||
namespace MangoPay; | ||
|
||
use MangoPay\Libraries\Dto; | ||
|
||
/** | ||
* A conversion, at the rate guaranteed by its quote, of the debited funds to the credited wallet. | ||
*/ | ||
class CreateClientWalletsQuotedConversion extends Dto | ||
{ | ||
/** | ||
* The unique identifier of the active quote which guaranteed the rate for the conversion. | ||
* @var string | ||
*/ | ||
public $QuoteId; | ||
|
||
/** | ||
* Allowed values: FEES, CREDIT | ||
* | ||
* <p>The type of the client wallet to be debited:</p> | ||
* <p>FEES – Fees Wallet, for fees collected by the platform.</p> | ||
* <p>CREDIT – Repudiation Wallet, for funds related to dispute management.</p> | ||
* <p>The amount and currency of the debited funds are defined by the quote.</p> | ||
* @var string | ||
*/ | ||
public $DebitedWalletType; | ||
|
||
/** | ||
* Allowed values: FEES, CREDIT | ||
* | ||
* <p>The type of the client wallet to be credited:</p> | ||
* <p>FEES – Fees Wallet, for fees collected by the platform.</p> | ||
* <p>CREDIT – Repudiation Wallet, for funds related to dispute management.</p> | ||
* <p>The amount and currency of the credited funds are defined by the quote.</p> | ||
* @var string | ||
*/ | ||
public $CreditedWalletType; | ||
|
||
/** | ||
* Custom data. | ||
* @var string | ||
*/ | ||
public $Tag; | ||
} |
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