1 | <?php |
||
5 | class Customs extends Model |
||
6 | { |
||
7 | public $purpose; |
||
8 | public $terms_of_trade; |
||
9 | public $eei; |
||
10 | public $billing; |
||
11 | public $importer_address; |
||
12 | public $passport; |
||
13 | |||
14 | /** |
||
15 | * @param $value |
||
16 | * |
||
17 | * @throws \Exception |
||
18 | * |
||
19 | * @return $this |
||
20 | */ |
||
21 | public function purpose($value) |
||
33 | |||
34 | /** |
||
35 | * @param $value |
||
36 | * |
||
37 | * @throws \Exception |
||
38 | * |
||
39 | * @return $this |
||
40 | */ |
||
41 | public function terms_of_trade($value) |
||
53 | |||
54 | /** |
||
55 | * @param no_eei $value |
||
56 | * |
||
57 | * @return $this |
||
58 | */ |
||
59 | public function no_eei(no_eei $value) |
||
65 | |||
66 | /** |
||
67 | * @param aes $value |
||
68 | * |
||
69 | * @return $this |
||
70 | */ |
||
71 | public function aes(aes $value) |
||
77 | |||
78 | /** |
||
79 | * @param CustomsBilling $value |
||
80 | * |
||
81 | * @return $this |
||
82 | */ |
||
83 | public function customs_billing(CustomsBilling $value) |
||
89 | |||
90 | /** |
||
91 | * @param Address $value |
||
92 | * |
||
93 | * @return $this |
||
94 | */ |
||
95 | public function importer_address(Address $value) |
||
101 | |||
102 | /** |
||
103 | * @param Passport $value |
||
104 | * |
||
105 | * @return $this |
||
106 | */ |
||
107 | public function passport(Passport $value) |
||
113 | } |
||
114 |