| 1 | <?php |
||
| 31 | class FareOptionDetails |
||
| 32 | { |
||
| 33 | const QUAL_ORIGIN_TO_DESTINATION = "OD"; |
||
| 34 | const QUAL_DESTINATION_TO_ORIGIN = "DO"; |
||
| 35 | const QUAL_BOTH = "BD"; |
||
| 36 | |||
| 37 | /** |
||
| 38 | * self::QUAL_* |
||
| 39 | * |
||
| 40 | * @var string |
||
| 41 | */ |
||
| 42 | public $fareQualifier; |
||
| 43 | |||
| 44 | /** |
||
| 45 | * @var string |
||
| 46 | */ |
||
| 47 | public $rateCategory; |
||
| 48 | |||
| 49 | /** |
||
| 50 | * @var string |
||
| 51 | */ |
||
| 52 | public $amount; |
||
| 53 | |||
| 54 | /** |
||
| 55 | * @var string |
||
| 56 | */ |
||
| 57 | public $percentage; |
||
| 58 | |||
| 59 | /** |
||
| 60 | * FareOptionDetails constructor. |
||
| 61 | * |
||
| 62 | * @param string $fareQualifier |
||
| 63 | */ |
||
| 64 | public function __construct($fareQualifier) |
||
| 68 | } |
||
| 69 |