| 1 | <?php |
||
| 16 | class OriginatorDetails |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * @var string |
||
| 20 | */ |
||
| 21 | public $originatorId; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @var string |
||
| 25 | */ |
||
| 26 | public $inHouseIdentification1; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * OriginatorDetails constructor. |
||
| 30 | * |
||
| 31 | * @param string $iataNumber |
||
| 32 | * @param string $officeId |
||
| 33 | */ |
||
| 34 | public function __construct($iataNumber, $officeId) |
||
| 39 | } |
||
| 40 |