| 1 | <?php |
||
| 31 | class FamilyInformation |
||
| 32 | { |
||
| 33 | /** |
||
| 34 | * @var string |
||
| 35 | */ |
||
| 36 | public $refNumber; |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @var string |
||
| 40 | */ |
||
| 41 | public $fareFamilyname; |
||
| 42 | |||
| 43 | /** |
||
| 44 | * @var string |
||
| 45 | */ |
||
| 46 | public $hierarchy; |
||
| 47 | |||
| 48 | /** |
||
| 49 | * @var CommercialFamilyDetails[] |
||
| 50 | */ |
||
| 51 | public $commercialFamilyDetails = []; |
||
| 52 | |||
| 53 | /** |
||
| 54 | * FamilyInformation constructor. |
||
| 55 | * |
||
| 56 | * @param string $fareFamilyname |
||
| 57 | * @param string $hierarchy |
||
| 58 | */ |
||
| 59 | 2 | public function __construct($fareFamilyname, $hierarchy) |
|
| 64 | } |
||
| 65 |