-
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
3467310
commit 9b0d4b4
Showing
25 changed files
with
1,005 additions
and
430 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>8.0.1</releaseNumber> | ||
<releaseNumber>8.0.2</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?php | ||
|
||
namespace GlobalPayments\Api\Entities\PayFac; | ||
|
||
class DeviceAttributeInfo | ||
{ | ||
/** | ||
* Name of attribute item which is specific to Portico devices for AMD. | ||
* The value of this item is passed to Heartland for | ||
* equipment boarding. | ||
* | ||
* @var string | ||
*/ | ||
public $name; | ||
|
||
/** | ||
* Value of the attribute item. | ||
* | ||
* @var string | ||
*/ | ||
public $value; | ||
} |
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,23 @@ | ||
<?php | ||
|
||
namespace GlobalPayments\Api\Entities\PayFac; | ||
|
||
class DeviceOrder | ||
{ | ||
public $accountNumber; | ||
public $shipTo; | ||
public $shipToContact; | ||
public $shipToAddress; | ||
public $shipToAddress2; | ||
public $shipToCity; | ||
public $shipToState; | ||
public $shipToZip; | ||
public $shipToPhone; | ||
public $cardholderName; | ||
public $ccNum; | ||
public $expDate; | ||
public $cvv2; | ||
public $billingZip; | ||
public $name; | ||
public $quantity; | ||
} |
Oops, something went wrong.