-
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
5a8f97a
commit 6cfaeba
Showing
29 changed files
with
1,267 additions
and
65 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>6.0.3</releaseNumber> | ||
<releaseNumber>6.0.4</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<?php | ||
|
||
namespace GlobalPayments\Api\Entities; | ||
|
||
/** | ||
* BNPL response entity | ||
*/ | ||
class BNPLResponse | ||
{ | ||
/** @var string */ | ||
public $providerName; | ||
|
||
/** | ||
* URL to redirect the customer, sent so merchant can redirect consumer to complete the payment. | ||
* | ||
* @var string | ||
*/ | ||
public $redirectUrl; | ||
} |
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,24 @@ | ||
<?php | ||
|
||
namespace GlobalPayments\Api\Entities; | ||
|
||
use GlobalPayments\Api\Entities\Enums\CustomerDocumentType; | ||
|
||
class CustomerDocument | ||
{ | ||
/** @var string */ | ||
public $reference; | ||
|
||
/** @var string */ | ||
public $issuer; | ||
|
||
/** @var CustomerDocumentType */ | ||
public $type; | ||
|
||
public function __construct($reference, $issuer, $type) | ||
{ | ||
$this->reference = $reference; | ||
$this->issuer = $issuer; | ||
$this->type = $type; | ||
} | ||
} |
Oops, something went wrong.