1 | <?php |
||
7 | class StateReason 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 $mappingClasses = []; |
||
23 | |||
24 | protected $propNameMap = []; |
||
25 | |||
26 | /** |
||
27 | * Retrieve the feedId property |
||
28 | * |
||
29 | * @return int|null |
||
30 | */ |
||
31 | public function getFeedId() |
||
35 | |||
36 | /** |
||
37 | * Set the feedId property |
||
38 | * |
||
39 | * @param int $feedId |
||
40 | * @return $this |
||
41 | */ |
||
42 | public function setFeedId($feedId) |
||
47 | |||
48 | /** |
||
49 | * Retrieve the offerId property |
||
50 | * |
||
51 | * @return string|null |
||
52 | */ |
||
53 | public function getOfferId() |
||
57 | |||
58 | /** |
||
59 | * Set the offerId property |
||
60 | * |
||
61 | * @param string $offerId |
||
62 | * @return $this |
||
63 | */ |
||
64 | public function setOfferId($offerId) |
||
69 | |||
70 | /** |
||
71 | * Retrieve the feedCategoryId property |
||
72 | * |
||
73 | * @return string|null |
||
74 | */ |
||
75 | public function getFeedCategoryId() |
||
79 | |||
80 | /** |
||
81 | * Set the feedCategoryId property |
||
82 | * |
||
83 | * @param string $feedCategoryId |
||
84 | * @return $this |
||
85 | */ |
||
86 | public function setFeedCategoryId($feedCategoryId) |
||
91 | |||
92 | /** |
||
93 | * Retrieve the offerName property |
||
94 | * |
||
95 | * @return string|null |
||
96 | */ |
||
97 | public function getOfferName() |
||
101 | |||
102 | /** |
||
103 | * Set the offerName property |
||
104 | * |
||
105 | * @param string $offerName |
||
106 | * @return $this |
||
107 | */ |
||
108 | public function setOfferName($offerName) |
||
113 | |||
114 | /** |
||
115 | * Retrieve the price property |
||
116 | * |
||
117 | * @return int|null |
||
118 | */ |
||
119 | public function getPrice() |
||
123 | |||
124 | /** |
||
125 | * Set the price property |
||
126 | * |
||
127 | * @param int $price |
||
128 | * @return $this |
||
129 | */ |
||
130 | public function setPrice($price) |
||
135 | |||
136 | /** |
||
137 | * Retrieve the count property |
||
138 | * |
||
139 | * @return int|null |
||
140 | */ |
||
141 | public function getCount() |
||
145 | |||
146 | /** |
||
147 | * Set the count property |
||
148 | * |
||
149 | * @param int $count |
||
150 | * @return $this |
||
151 | */ |
||
152 | public function setCount($count) |
||
157 | } |
||
158 |