-
Notifications
You must be signed in to change notification settings - Fork 67
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
cf0bb83
commit 73afe68
Showing
30 changed files
with
605 additions
and
402 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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
<xml> | ||
<releaseNumber>7.0.2</releaseNumber> | ||
<releaseNumber>7.0.3</releaseNumber> | ||
</xml> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?php | ||
|
||
namespace GlobalPayments\Api\Entities\Enums; | ||
|
||
use GlobalPayments\Api\Entities\Enum; | ||
|
||
class UsableBalanceMode extends Enum | ||
{ | ||
const AVAILABLE_BALANCE = 'AVAILABLE_BALANCE'; | ||
const AVAILABLE_AND_PENDING_BALANCE = 'AVAILABLE_AND_PENDING_BALANCE'; | ||
} |
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,17 @@ | ||
<?php | ||
|
||
namespace GlobalPayments\Api\Entities; | ||
|
||
class FundsData | ||
{ | ||
/** | ||
* @var string | ||
*/ | ||
public $merchantId; | ||
|
||
/** | ||
* The merchant's account id that will be receiving the transfer | ||
* @var string | ||
*/ | ||
public $recipientAccountId; | ||
} |
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,20 @@ | ||
<?php | ||
|
||
namespace GlobalPayments\Api\Entities; | ||
|
||
class TransferFundsAccountCollection extends \ArrayObject | ||
{ | ||
/** | ||
* @param TransferFundsAccountDetails $transfer | ||
* @param string $id | ||
*/ | ||
public function add(TransferFundsAccountDetails $transfer, string $id) | ||
{ | ||
$this->offsetSet($id, $transfer); | ||
} | ||
|
||
public function get(string $id) : TransferFundsAccountDetails | ||
{ | ||
return $this->offsetGet($id); | ||
} | ||
} |
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,44 @@ | ||
<?php | ||
|
||
namespace GlobalPayments\Api\Entities; | ||
|
||
use GlobalPayments\Api\Entities\Enums\TransactionStatus; | ||
|
||
class TransferFundsAccountDetails | ||
{ | ||
/** | ||
* A unique identifier generated by Global Payments to identify a transfer | ||
* @var string | ||
*/ | ||
public $id; | ||
/** | ||
* Indicates where a Transfer is in its lifecycle. | ||
* | ||
* @var TransactionStatus | ||
*/ | ||
public $status; | ||
|
||
/** | ||
* Global Payments time indicating when the object was created in ISO-8601 format. | ||
* @var string | ||
*/ | ||
public $timeCreated; | ||
|
||
/** | ||
* This is the amount being transferred. | ||
* @var string; | ||
*/ | ||
public $amount; | ||
|
||
/** | ||
* Split reference number | ||
* @var string | ||
*/ | ||
public $reference; | ||
|
||
/** | ||
* The description of the split. | ||
* @var string | ||
*/ | ||
public $description; | ||
} |
Oops, something went wrong.