1 | <?php |
||
8 | class AutoApplyResult extends AbstractResult |
||
9 | { |
||
10 | protected $orderNumber; |
||
11 | protected $expectedDeliveryTime; |
||
12 | protected $totalCost; |
||
13 | protected $paid; |
||
14 | protected $certificateID; |
||
15 | protected $uniqueValue; |
||
16 | |||
17 | /** |
||
18 | * @param bool $paid |
||
19 | * |
||
20 | * @return AutoApplyResult |
||
21 | */ |
||
22 | public function setPaid($paid) |
||
28 | |||
29 | /** |
||
30 | * @return bool |
||
31 | */ |
||
32 | public function getPaid() |
||
36 | |||
37 | /** |
||
38 | * @param mixed $certificateID |
||
39 | * |
||
40 | * @return AutoApplyResult |
||
41 | */ |
||
42 | public function setCertificateID($certificateID) |
||
48 | |||
49 | /** |
||
50 | * @return mixed |
||
51 | */ |
||
52 | public function getCertificateID() |
||
56 | |||
57 | |||
58 | /** |
||
59 | * @param int $expectedDeliveryTime |
||
60 | * |
||
61 | * @return AutoApplyResult |
||
62 | */ |
||
63 | public function setExpectedDeliveryTime($expectedDeliveryTime) |
||
69 | |||
70 | /** |
||
71 | * @return int |
||
72 | */ |
||
73 | public function getExpectedDeliveryTime() |
||
77 | |||
78 | /** |
||
79 | * @param int $orderNumber |
||
80 | * |
||
81 | * @return AutoApplyResult |
||
82 | */ |
||
83 | public function setOrderNumber($orderNumber) |
||
89 | |||
90 | /** |
||
91 | * @return int |
||
92 | */ |
||
93 | public function getOrderNumber() |
||
97 | |||
98 | /** |
||
99 | * @param float $totalCost |
||
100 | * |
||
101 | * @return AutoApplyResult |
||
102 | */ |
||
103 | public function setTotalCost($totalCost) |
||
109 | |||
110 | /** |
||
111 | * @return float |
||
112 | */ |
||
113 | public function getTotalCost() |
||
117 | |||
118 | /** |
||
119 | * @return string |
||
120 | */ |
||
121 | public function getUniqueValue() |
||
125 | |||
126 | /** |
||
127 | * @param string $uniqueValue |
||
128 | * |
||
129 | * @return AutoApplyResult |
||
130 | */ |
||
131 | public function setUniqueValue($uniqueValue) |
||
137 | } |
||
138 |