1 | <?php |
||
5 | class PriceCreationDto |
||
6 | { |
||
7 | public $id; |
||
8 | |||
9 | public $type; |
||
10 | |||
11 | public $type_id; |
||
12 | |||
13 | public $target_id; |
||
14 | |||
15 | public $target_name; |
||
16 | |||
17 | public $target_type_id; |
||
18 | |||
19 | public $target_type_name; |
||
20 | |||
21 | public $quantity; |
||
22 | |||
23 | public $unit; |
||
24 | |||
25 | public $currency; |
||
26 | |||
27 | public $price; |
||
28 | |||
29 | public static function fromArray(array $items) |
||
38 | } |
||
39 |