1
|
|
|
<?php |
2
|
|
|
/** |
3
|
|
|
* amadeus-ws-client |
4
|
|
|
* |
5
|
|
|
* Copyright 2015 Amadeus Benelux NV |
6
|
|
|
* |
7
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); |
8
|
|
|
* you may not use this file except in compliance with the License. |
9
|
|
|
* You may obtain a copy of the License at |
10
|
|
|
* |
11
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0 |
12
|
|
|
* |
13
|
|
|
* Unless required by applicable law or agreed to in writing, software |
14
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, |
15
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
16
|
|
|
* See the License for the specific language governing permissions and |
17
|
|
|
* limitations under the License. |
18
|
|
|
* |
19
|
|
|
* @package Amadeus |
20
|
|
|
* @license https://opensource.org/licenses/Apache-2.0 Apache 2.0 |
21
|
|
|
*/ |
22
|
|
|
|
23
|
|
|
namespace Amadeus\Client\Struct\DocRefund\UpdateRefund; |
24
|
|
|
|
25
|
|
|
/** |
26
|
|
|
* TravellerPriorityInfo |
27
|
|
|
* |
28
|
|
|
* @package Amadeus\Client\Struct\DocRefund\UpdateRefund |
29
|
|
|
* @author Dieter Devlieghere <[email protected]> |
30
|
|
|
*/ |
31
|
|
|
class TravellerPriorityInfo |
32
|
|
|
{ |
33
|
|
|
const COMPANY_INDUSTRY_CAR_RENTAL = "7CC"; |
34
|
|
|
const COMPANY_INDUSTRY_HOTEL_CHAINS = "7HH"; |
35
|
|
|
|
36
|
|
|
/** |
37
|
|
|
* @var string |
38
|
|
|
*/ |
39
|
|
|
public $company; |
40
|
|
|
|
41
|
|
|
/** |
42
|
|
|
* @var string |
43
|
|
|
*/ |
44
|
|
|
public $dateOfJoining; |
45
|
|
|
|
46
|
|
|
/** |
47
|
|
|
* @var string |
48
|
|
|
*/ |
49
|
|
|
public $travellerReference; |
50
|
|
|
|
51
|
|
|
/** |
52
|
|
|
* TravellerPriorityInfo constructor. |
53
|
|
|
* |
54
|
|
|
* @param string|null $company |
55
|
|
|
* @param \DateTime|string|null $dateOfJoining |
56
|
|
|
* @param string|null $travellerReference |
57
|
|
|
*/ |
58
|
4 |
|
public function __construct($company = null, $dateOfJoining = null, $travellerReference = null) |
59
|
|
|
{ |
60
|
4 |
|
$this->company = $company; |
61
|
4 |
|
$this->dateOfJoining = $this->loadDate($dateOfJoining); |
62
|
4 |
|
$this->travellerReference = $travellerReference; |
63
|
4 |
|
} |
64
|
|
|
|
65
|
|
|
/** |
66
|
|
|
* @param \DateTime|string|null $dateOfJoining |
67
|
|
|
* @return string|null |
68
|
|
|
*/ |
69
|
4 |
|
protected function loadDate($dateOfJoining) |
70
|
|
|
{ |
71
|
4 |
|
$str = null; |
72
|
|
|
|
73
|
4 |
|
if ($dateOfJoining instanceof \DateTime) { |
74
|
3 |
|
$str = strtoupper($dateOfJoining->format('dMy')); |
75
|
4 |
|
} elseif (!empty($dateOfJoining)) { |
76
|
1 |
|
$str = $dateOfJoining; |
77
|
1 |
|
} |
78
|
|
|
|
79
|
4 |
|
return $str; |
80
|
|
|
} |
81
|
|
|
} |
82
|
|
|
|