-
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
3f9e43e
commit d7e63ea
Showing
23 changed files
with
292 additions
and
130 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>3.0.4</releaseNumber> | ||
<releaseNumber>3.0.5</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?php | ||
|
||
namespace GlobalPayments\Api\Entities\Enums; | ||
|
||
use GlobalPayments\Api\Entities\Enum; | ||
|
||
class LodgingItemType extends Enum | ||
{ | ||
const RESTAURANT = 'RESTAURANT'; | ||
const GIFT_SHOP = 'GIFT_SHOP'; | ||
const MINI_BAR = 'MINI_BAR'; | ||
const PHONE = 'PHONE'; | ||
const LAUNDRY = 'LAUNDRY'; | ||
const OTHER = 'OTHER'; | ||
const NO_SHOW = 'NO_SHOW'; | ||
} |
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,13 @@ | ||
<?php | ||
|
||
namespace GlobalPayments\Api\Entities\Enums; | ||
|
||
use GlobalPayments\Api\Entities\Enum; | ||
|
||
class PaymentMethodProgram extends Enum | ||
{ | ||
const ASSURED_RESERVATION = 'ASSURED_RESERVATION'; | ||
const CARD_DEPOSIT = 'CARD_DEPOSIT'; | ||
const PURCHASE = 'PURCHASE'; | ||
const OTHER = 'OTHER'; | ||
} |
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,24 @@ | ||
<?php | ||
|
||
namespace GlobalPayments\Api\Entities; | ||
|
||
class Lodging | ||
{ | ||
/** @var string */ | ||
public $bookingReference; | ||
|
||
/** @var integer */ | ||
public $durationDays; | ||
|
||
/** @var string */ | ||
public $dateCheckedIn; | ||
|
||
/** @var string */ | ||
public $dateCheckedOut; | ||
|
||
/** @var string */ | ||
public $dailyRateAmount; | ||
|
||
/** @var array<LodgingItems> */ | ||
public $items; | ||
} |
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,18 @@ | ||
<?php | ||
|
||
namespace GlobalPayments\Api\Entities; | ||
|
||
class LodgingItems | ||
{ | ||
/** @var array */ | ||
public $types; | ||
|
||
/** @var string */ | ||
public $reference; | ||
|
||
/** @var string */ | ||
public $totalAmount; | ||
|
||
/** @var array */ | ||
public $paymentMethodProgramCodes; | ||
} |
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
Oops, something went wrong.