1 | <?php |
||
7 | class Item extends Model |
||
8 | { |
||
9 | |||
10 | protected $feedId = null; |
||
11 | |||
12 | protected $offerId = null; |
||
13 | |||
14 | protected $feedCategoryId = null; |
||
15 | |||
16 | protected $offerName = null; |
||
17 | |||
18 | protected $price = null; |
||
19 | |||
20 | protected $count = null; |
||
21 | |||
22 | protected $delivery = null; |
||
23 | |||
24 | protected $mappingClasses = []; |
||
25 | |||
26 | protected $propNameMap = []; |
||
27 | |||
28 | /** |
||
29 | * Retrieve the feedId property |
||
30 | * |
||
31 | * @return int|null |
||
32 | */ |
||
33 | public function getFeedId() |
||
37 | |||
38 | /** |
||
39 | * Set the feedId property |
||
40 | * |
||
41 | * @param int $feedId |
||
42 | * @return $this |
||
43 | */ |
||
44 | public function setFeedId($feedId) |
||
49 | |||
50 | /** |
||
51 | * Retrieve the offerId property |
||
52 | * |
||
53 | * @return string|null |
||
54 | */ |
||
55 | public function getOfferId() |
||
59 | |||
60 | /** |
||
61 | * Set the offerId property |
||
62 | * |
||
63 | * @param string $offerId |
||
64 | * @return $this |
||
65 | */ |
||
66 | public function setOfferId($offerId) |
||
71 | |||
72 | /** |
||
73 | * Retrieve the feedCategoryId property |
||
74 | * |
||
75 | * @return string|null |
||
76 | */ |
||
77 | public function getFeedCategoryId() |
||
81 | |||
82 | /** |
||
83 | * Set the feedCategoryId property |
||
84 | * |
||
85 | * @param string $feedCategoryId |
||
86 | * @return $this |
||
87 | */ |
||
88 | public function setFeedCategoryId($feedCategoryId) |
||
93 | |||
94 | /** |
||
95 | * Retrieve the offerName property |
||
96 | * |
||
97 | * @return string|null |
||
98 | */ |
||
99 | public function getOfferName() |
||
103 | |||
104 | /** |
||
105 | * Set the offerName property |
||
106 | * |
||
107 | * @param string $offerName |
||
108 | * @return $this |
||
109 | */ |
||
110 | public function setOfferName($offerName) |
||
115 | |||
116 | /** |
||
117 | * Retrieve the price property |
||
118 | * |
||
119 | * @return int|null |
||
120 | */ |
||
121 | public function getPrice() |
||
125 | |||
126 | /** |
||
127 | * Set the price property |
||
128 | * |
||
129 | * @param int $price |
||
130 | * @return $this |
||
131 | */ |
||
132 | public function setPrice($price) |
||
137 | |||
138 | /** |
||
139 | * Retrieve the count property |
||
140 | * |
||
141 | * @return int|null |
||
142 | */ |
||
143 | public function getCount() |
||
147 | |||
148 | /** |
||
149 | * Set the count property |
||
150 | * |
||
151 | * @param int $count |
||
152 | * @return $this |
||
153 | */ |
||
154 | public function setCount($count) |
||
159 | |||
160 | /** |
||
161 | * Retrieve the delivery property |
||
162 | * |
||
163 | * @return bool|null |
||
164 | */ |
||
165 | public function getDelivery() |
||
169 | |||
170 | /** |
||
171 | * Set the delivery property |
||
172 | * |
||
173 | * @param bool $delivery |
||
174 | * @return $this |
||
175 | */ |
||
176 | public function setDelivery($delivery) |
||
181 | } |
||
182 |