| 1 | <?php |
||
| 16 | class FunctionDetails |
||
| 17 | { |
||
| 18 | const ACTION_AVAILABILITY = 44; |
||
| 19 | |||
| 20 | const ACTION_SCHEDULE = 48; |
||
| 21 | |||
| 22 | const ACTION_TIMETABLE = 51; |
||
| 23 | |||
| 24 | const ACTION_SUBSEQUENT_BACKWARD = 54; |
||
| 25 | |||
| 26 | const ACTION_SUBSEQUENT_FORWARD = 55; |
||
| 27 | |||
| 28 | const ACTION_SUBSEQUENT_ORIGINAL = 61; |
||
| 29 | |||
| 30 | const BUSINESS_AIR_PROVIDER = 1; |
||
| 31 | |||
| 32 | |||
| 33 | /** |
||
| 34 | * @var int|string |
||
| 35 | */ |
||
| 36 | public $businessFunction; |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @var int|string |
||
| 40 | */ |
||
| 41 | public $actionCode; |
||
| 42 | |||
| 43 | /** |
||
| 44 | * @var string |
||
| 45 | */ |
||
| 46 | public $subActionCode; |
||
| 47 | |||
| 48 | /** |
||
| 49 | * FunctionDetails constructor. |
||
| 50 | * |
||
| 51 | * @param int|string|null $actionCode |
||
| 52 | * @param int|string|null $businessFunction |
||
| 53 | */ |
||
| 54 | public function __construct($actionCode, $businessFunction = null) |
||
| 59 | } |
||
| 60 |