-
Notifications
You must be signed in to change notification settings - Fork 191
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implemented message Fare_GetFareRules (issue #63)
- Loading branch information
Showing
19 changed files
with
852 additions
and
4 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
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
59 changes: 59 additions & 0 deletions
59
src/Amadeus/Client/Struct/Fare/GetFareRules/CorporateId.php
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,59 @@ | ||
<?php | ||
/** | ||
* amadeus-ws-client | ||
* | ||
* Copyright 2015 Amadeus Benelux NV | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
* @package Amadeus | ||
* @license https://opensource.org/licenses/Apache-2.0 Apache 2.0 | ||
*/ | ||
|
||
namespace Amadeus\Client\Struct\Fare\GetFareRules; | ||
|
||
/** | ||
* CorporateId | ||
* | ||
* @package Amadeus\Client\Struct\Fare\GetFareRules | ||
* @author Dieter Devlieghere <dieter.devlieghere@benelux.amadeus.com> | ||
*/ | ||
class CorporateId | ||
{ | ||
const QUAL_AMADEUS_NEGO_FARES = "RN"; | ||
const QUAL_UNIFARES = "RU"; | ||
|
||
/** | ||
* self::QUAL_* | ||
* | ||
* @var string | ||
*/ | ||
public $corporateQualifier; | ||
|
||
/** | ||
* @var string | ||
*/ | ||
public $identity; | ||
|
||
/** | ||
* CorporateId constructor. | ||
* | ||
* @param string $identity | ||
* @param string $corporateQualifier self::QUAL_* | ||
*/ | ||
public function __construct($identity, $corporateQualifier) | ||
{ | ||
$this->identity = $identity; | ||
$this->corporateQualifier = $corporateQualifier; | ||
} | ||
} |
57 changes: 57 additions & 0 deletions
57
src/Amadeus/Client/Struct/Fare/GetFareRules/DateAndTimeDetails.php
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,57 @@ | ||
<?php | ||
/** | ||
* amadeus-ws-client | ||
* | ||
* Copyright 2015 Amadeus Benelux NV | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
* @package Amadeus | ||
* @license https://opensource.org/licenses/Apache-2.0 Apache 2.0 | ||
*/ | ||
|
||
namespace Amadeus\Client\Struct\Fare\GetFareRules; | ||
|
||
/** | ||
* DateAndTimeDetails | ||
* | ||
* @package Amadeus\Client\Struct\Fare\GetFareRules | ||
* @author Dieter Devlieghere <dieter.devlieghere@benelux.amadeus.com> | ||
*/ | ||
class DateAndTimeDetails | ||
{ | ||
/** | ||
* @var int|string | ||
*/ | ||
public $qualifier; | ||
|
||
/** | ||
* @var string | ||
*/ | ||
public $date; | ||
|
||
/** | ||
* @var string | ||
*/ | ||
public $otherQualifier; | ||
|
||
/** | ||
* DateAndTimeDetails constructor. | ||
* | ||
* @param \DateTime $date | ||
*/ | ||
public function __construct(\DateTime $date) | ||
{ | ||
$this->date = $date->format('dmy'); | ||
} | ||
} |
47 changes: 47 additions & 0 deletions
47
src/Amadeus/Client/Struct/Fare/GetFareRules/DateFlightMovement.php
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,47 @@ | ||
<?php | ||
/** | ||
* amadeus-ws-client | ||
* | ||
* Copyright 2015 Amadeus Benelux NV | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
* @package Amadeus | ||
* @license https://opensource.org/licenses/Apache-2.0 Apache 2.0 | ||
*/ | ||
|
||
namespace Amadeus\Client\Struct\Fare\GetFareRules; | ||
|
||
/** | ||
* DateFlightMovement | ||
* | ||
* @package Amadeus\Client\Struct\Fare\GetFareRules | ||
* @author Dieter Devlieghere <dieter.devlieghere@benelux.amadeus.com> | ||
*/ | ||
class DateFlightMovement | ||
{ | ||
/** | ||
* @var DateAndTimeDetails[] | ||
*/ | ||
public $dateAndTimeDetails = []; | ||
|
||
/** | ||
* DateFlightMovement constructor. | ||
* | ||
* @param \DateTime $travelDate | ||
*/ | ||
public function __construct(\DateTime $travelDate) | ||
{ | ||
$this->dateAndTimeDetails[] = new DateAndTimeDetails($travelDate); | ||
} | ||
} |
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.