| 1 | <?php |
||
| 7 | class DeliveryMethod extends Model |
||
| 8 | { |
||
| 9 | protected $serviceName = null; |
||
| 10 | |||
| 11 | protected $priceCurrency = null; |
||
| 12 | |||
| 13 | protected $priceValue = null; |
||
| 14 | |||
| 15 | protected $speedFrom = null; |
||
| 16 | |||
| 17 | protected $speedTo = null; |
||
| 18 | |||
| 19 | protected $propNameMap = [ |
||
| 20 | 'price' => 'priceValue', |
||
| 21 | ]; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * Retrieve the serviceName property |
||
| 25 | * |
||
| 26 | * @return string|null |
||
| 27 | */ |
||
| 28 | 3 | public function getServiceName() |
|
| 32 | |||
| 33 | /** |
||
| 34 | * Retrieve the priceCurrency property |
||
| 35 | * |
||
| 36 | * @return string|null |
||
| 37 | */ |
||
| 38 | public function getPriceCurrency() |
||
| 42 | |||
| 43 | /** |
||
| 44 | * Retrieve the priceValue property |
||
| 45 | * |
||
| 46 | * @return int|null |
||
| 47 | */ |
||
| 48 | public function getPriceValue() |
||
| 52 | |||
| 53 | /** |
||
| 54 | * Retrieve the speedFrom property |
||
| 55 | * |
||
| 56 | * @return int|null |
||
| 57 | */ |
||
| 58 | public function getSpeedFrom() |
||
| 62 | |||
| 63 | /** |
||
| 64 | * Retrieve the speedTo property |
||
| 65 | * |
||
| 66 | * @return int|null |
||
| 67 | */ |
||
| 68 | public function getSpeedTo() |
||
| 72 | } |
||
| 73 |