| 1 | <?php |
||
| 14 | class Flightlog extends DolibarrApi |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * @var array $FIELDS Mandatory fields, checked when create and update object |
||
| 18 | */ |
||
| 19 | static $FIELDS = array( |
||
| 20 | 'id' |
||
| 21 | ); |
||
| 22 | |||
| 23 | public $flight; |
||
| 24 | |||
| 25 | public function __construct() |
||
| 32 | |||
| 33 | /** |
||
| 34 | * Get properties of a commercial proposal object |
||
| 35 | * |
||
| 36 | * Return an array with commercial proposal informations |
||
| 37 | * |
||
| 38 | * @param int $id ID of commercial proposal |
||
| 39 | * @return array|mixed data without useless information |
||
| 40 | * |
||
| 41 | * @throws RestException |
||
| 42 | */ |
||
| 43 | public function get($id) |
||
| 60 | } |