1 | <?php |
||
9 | class AirlineCheckInTemplate extends AbstractAirlineTemplate |
||
10 | { |
||
11 | /** |
||
12 | * @var string |
||
13 | */ |
||
14 | protected $introMessage; |
||
15 | |||
16 | /** |
||
17 | * @var string |
||
18 | */ |
||
19 | protected $pnrNumber; |
||
20 | |||
21 | /** |
||
22 | * @var \Kerox\Messenger\Model\Message\Attachment\Template\Airline\FlightInfo[] |
||
23 | */ |
||
24 | protected $flightInfo; |
||
25 | |||
26 | /** |
||
27 | * @var string |
||
28 | */ |
||
29 | protected $checkinUrl; |
||
30 | |||
31 | /** |
||
32 | * AirlineCheckIn constructor. |
||
33 | * |
||
34 | * @throws \Kerox\Messenger\Exception\MessengerException |
||
35 | */ |
||
36 | 1 | public function __construct( |
|
50 | |||
51 | /** |
||
52 | *@throws \Kerox\Messenger\Exception\MessengerException |
||
53 | * |
||
54 | *@return \Kerox\Messenger\Model\Message\Attachment\Template\AirlineCheckInTemplate |
||
55 | */ |
||
56 | 1 | public static function create( |
|
65 | |||
66 | 1 | public function toArray(): array |
|
83 | } |
||
84 |