1 | <?php |
||
9 | final class CreateOrderForEmissionICRequestLight extends CreateOrderForEmissionICRequest |
||
10 | { |
||
11 | public const RELEASE_METHOD_TYPE_PRODUCTION = 'PRODUCTION'; |
||
12 | public const RELEASE_METHOD_TYPE_IMPORT = 'IMPORT'; |
||
13 | public const RELEASE_METHOD_TYPE_REMAINS = 'REMAINS'; |
||
14 | |||
15 | public const CREATE_METHOD_TYPE_SELF_MADE = 'SELF_MADE'; |
||
16 | public const CREATE_METHOD_TYPE_CEM = 'CEM'; |
||
17 | |||
18 | /** |
||
19 | * @var string |
||
20 | */ |
||
21 | private $contactPerson; |
||
22 | /** |
||
23 | * @var string |
||
24 | */ |
||
25 | private $releaseMethodType; |
||
26 | /** |
||
27 | * @var string |
||
28 | */ |
||
29 | private $createMethodType; |
||
30 | /** |
||
31 | * @var string |
||
32 | */ |
||
33 | private $productionOrderId; |
||
34 | /** |
||
35 | * @var string |
||
36 | */ |
||
37 | private $contractNumber; |
||
38 | /** |
||
39 | * @var DateTimeInterface |
||
40 | */ |
||
41 | private $contractDate; |
||
42 | |||
43 | /** |
||
44 | * CreateOrderForEmissionICRequestLight constructor. |
||
45 | * @param string $contactPerson |
||
46 | * @param string $releaseMethodType |
||
47 | * @param string $createMethodType |
||
48 | * @param string $productionOrderId |
||
49 | * @param string $contractNumber |
||
50 | * @param DateTimeInterface $contractDate |
||
51 | * @param OrderProduct[] $products |
||
52 | */ |
||
53 | public function __construct( |
||
71 | |||
72 | public function getContactPerson(): string |
||
76 | |||
77 | public function getReleaseMethodType(): string |
||
81 | |||
82 | public function getCreateMethodType(): string |
||
86 | |||
87 | public function getProductionOrderId(): string |
||
91 | |||
92 | public function getContractNumber(): string |
||
96 | |||
97 | public function getContractDate(): DateTimeInterface |
||
101 | } |