|
40 | 40 |
|
41 | 41 | #[ORM\Column(type: 'string', length: 100, nullable: true)] |
42 | 42 | #[OA\Property(type: 'string', maxLength: 100)] |
43 | | - private ?string $fullName; |
| 43 | + private ?string $fullName = null; |
44 | 44 |
|
45 | 45 | #[ORM\Column(type: 'string', length: 50)] |
46 | 46 | private string $shortName; |
47 | 47 |
|
48 | 48 | #[ORM\Column(type: 'float', nullable: true)] |
49 | | - private ?float $tokenPrice; |
| 49 | + private ?float $tokenPrice = null; |
50 | 50 |
|
51 | 51 | #[ORM\Column(type: 'string', length: 50)] |
52 | 52 | private string $canal; |
53 | 53 |
|
54 | 54 | #[ORM\Column(type: 'string', length: 3, nullable: true)] |
55 | | - private ?string $currency; |
| 55 | + private ?string $currency = null; |
56 | 56 |
|
57 | 57 | #[ORM\Column(type: 'integer')] |
58 | 58 | private int $totalTokens; |
59 | 59 |
|
60 | 60 | #[ORM\Column(type: 'string', length: 42, nullable: true)] |
61 | | - private ?string $ethereumContract; |
| 61 | + private ?string $ethereumContract = null; |
62 | 62 |
|
63 | 63 | #[ORM\Column(type: 'string', length: 42, nullable: true)] |
64 | | - private ?string $xDaiContract; |
| 64 | + private ?string $xDaiContract = null; |
65 | 65 |
|
66 | 66 | #[ORM\Column(type: 'string', length: 42, nullable: true)] |
67 | | - private ?string $gnosisContract; |
| 67 | + private ?string $gnosisContract = null; |
68 | 68 |
|
69 | 69 | #[ORM\Column(type: 'string', length: 42, nullable: true)] |
70 | | - private ?string $goerliContract; |
| 70 | + private ?string $goerliContract = null; |
71 | 71 |
|
72 | 72 | #[ORM\Column(type: 'float', nullable: true)] |
73 | | - private ?float $totalInvestment; |
| 73 | + private ?float $totalInvestment = null; |
74 | 74 |
|
75 | 75 | #[ORM\Column(type: 'float', nullable: true)] |
76 | | - private ?float $grossRentMonth; |
| 76 | + private ?float $grossRentMonth = null; |
77 | 77 |
|
78 | 78 | #[ORM\Column(type: 'float', nullable: true)] |
79 | | - private ?float $annualPercentageYield; |
| 79 | + private ?float $annualPercentageYield = null; |
80 | 80 |
|
81 | 81 | #[ORM\Column(type: 'float', nullable: true)] |
82 | | - private ?float $propertyManagementPercent; |
| 82 | + private ?float $propertyManagementPercent = null; |
83 | 83 |
|
84 | 84 | #[ORM\Column(type: 'float', nullable: true)] |
85 | | - private ?float $realtPlatformPercent; |
| 85 | + private ?float $realtPlatformPercent = null; |
86 | 86 |
|
87 | 87 | #[ORM\Column(type: 'float', nullable: true)] |
88 | | - private ?float $insurance; |
| 88 | + private ?float $insurance = null; |
89 | 89 |
|
90 | 90 | #[ORM\Column(type: 'float', nullable: true)] |
91 | | - private ?float $propertyTaxes; |
| 91 | + private ?float $propertyTaxes = null; |
92 | 92 |
|
93 | 93 | #[ORM\Column(type: 'float', nullable: true)] |
94 | | - private ?float $utilities; |
| 94 | + private ?float $utilities = null; |
95 | 95 |
|
96 | 96 | #[ORM\Column(type: 'float', nullable: true)] |
97 | | - private ?float $initialMaintenanceReserve; |
| 97 | + private ?float $initialMaintenanceReserve = null; |
98 | 98 |
|
99 | 99 | #[ORM\Column(type: Types::JSON, nullable: true)] |
100 | | - private ?array $coordinate; |
| 100 | + private ?array $coordinate = []; |
101 | 101 |
|
102 | 102 | #[ORM\Column(type: 'string', length: 255, nullable: true)] |
103 | | - private ?string $marketplaceLink; |
| 103 | + private ?string $marketplaceLink = null; |
104 | 104 |
|
105 | 105 | #[ORM\Column(type: Types::JSON, nullable: true)] |
106 | 106 | private ?array $imageLink = []; |
107 | 107 |
|
108 | 108 | #[ORM\Column(type: 'integer', nullable: true)] |
109 | | - private ?int $propertyType; |
| 109 | + private ?int $propertyType = null; |
110 | 110 |
|
111 | 111 | #[ORM\Column(type: 'string', length: 50, nullable: true)] |
112 | | - private ?string $propertyTypeName; |
| 112 | + private ?string $propertyTypeName = null; |
113 | 113 |
|
114 | 114 | #[ORM\Column(type: 'integer', nullable: true)] |
115 | | - private ?int $squareFeet; |
| 115 | + private ?int $squareFeet = null; |
116 | 116 |
|
117 | 117 | #[ORM\Column(type: 'integer', nullable: true)] |
118 | | - private ?int $lotSize; |
| 118 | + private ?int $lotSize = null; |
119 | 119 |
|
120 | 120 | #[ORM\Column(type: 'string', length: 100, nullable: true)] |
121 | | - private ?string $bedroomBath; |
| 121 | + private ?string $bedroomBath = null; |
122 | 122 |
|
123 | 123 | #[ORM\Column(type: 'boolean', nullable: true)] |
124 | | - private ?bool $hasTenants; |
| 124 | + private ?bool $hasTenants = null; |
125 | 125 |
|
126 | 126 | #[ORM\Column(type: 'string', length: 10, nullable: true)] |
127 | | - private ?string $termOfLease; |
| 127 | + private ?string $termOfLease = null; |
128 | 128 |
|
129 | 129 | #[ORM\Column(type: 'datetime', nullable: true)] |
130 | | - private ?\DateTime $renewalDate; |
| 130 | + private ?\DateTime $renewalDate = null; |
131 | 131 |
|
132 | 132 | #[ORM\Column(type: 'integer', nullable: true)] |
133 | | - private ?int $section8paid; |
| 133 | + private ?int $section8paid = null; |
134 | 134 |
|
135 | 135 | #[ORM\Column(type: 'string', length: 50, nullable: true)] |
136 | | - private ?string $sellPropertyTo; |
| 136 | + private ?string $sellPropertyTo = null; |
137 | 137 |
|
138 | 138 | #[ORM\Column(type: 'float', nullable: true)] |
139 | | - private ?float $grossRentYear; |
| 139 | + private ?float $grossRentYear = null; |
140 | 140 |
|
141 | 141 | #[ORM\Column(type: 'float', nullable: true)] |
142 | | - private ?float $propertyManagement; |
| 142 | + private ?float $propertyManagement = null; |
143 | 143 |
|
144 | 144 | #[ORM\Column(type: 'float', nullable: true)] |
145 | | - private ?float $realtPlatform; |
| 145 | + private ?float $realtPlatform = null; |
146 | 146 |
|
147 | 147 | #[ORM\Column(type: 'float', nullable: true)] |
148 | | - private ?float $netRentMonth; |
| 148 | + private ?float $netRentMonth = null; |
149 | 149 |
|
150 | 150 | #[ORM\Column(type: 'float', nullable: true)] |
151 | | - private ?float $netRentYear; |
| 151 | + private ?float $netRentYear = null; |
152 | 152 |
|
153 | 153 | #[ORM\Column(type: 'float', nullable: true)] |
154 | | - private ?float $netRentYearPerToken; |
| 154 | + private ?float $netRentYearPerToken = null; |
155 | 155 |
|
156 | 156 | #[ORM\Column(type: 'float', nullable: true)] |
157 | | - private ?float $netRentMonthPerToken; |
| 157 | + private ?float $netRentMonthPerToken = null; |
158 | 158 |
|
159 | 159 | #[ORM\Column(type: 'datetime')] |
160 | | - private ?DateTimeInterface $lastUpdate; |
| 160 | + private ?DateTimeInterface $lastUpdate = null; |
161 | 161 |
|
162 | 162 | #[ORM\Column(type: 'float', nullable: true)] |
163 | | - private ?float $netRentDay; |
| 163 | + private ?float $netRentDay = null; |
164 | 164 |
|
165 | 165 | #[ORM\Column(type: 'float', nullable: true)] |
166 | | - private ?float $netRentDayPerToken; |
| 166 | + private ?float $netRentDayPerToken = null; |
167 | 167 |
|
168 | 168 | #[ORM\Column(type: 'integer', nullable: true)] |
169 | | - private ?int $rentedUnits; |
| 169 | + private ?int $rentedUnits = null; |
170 | 170 |
|
171 | 171 | #[ORM\Column(type: 'integer', nullable: true)] |
172 | | - private ?int $totalUnits; |
| 172 | + private ?int $totalUnits = null; |
173 | 173 |
|
174 | 174 | #[ORM\Column(type: Types::JSON, nullable: true)] |
175 | 175 | private ?array $secondaryMarketplace = []; |
|
178 | 178 | private ?array $secondaryMarketplaces = []; |
179 | 179 |
|
180 | 180 | #[ORM\Column(type: 'string', length: 100, nullable: true)] |
181 | | - private ?string $symbol; |
| 181 | + private ?string $symbol = null; |
182 | 182 |
|
183 | 183 | #[ORM\Column(type: Types::JSON, nullable: true)] |
184 | 184 | private ?array $blockchainAddresses = []; |
185 | 185 |
|
186 | 186 | #[ORM\Column(type: 'float', nullable: true)] |
187 | | - private ?float $underlyingAssetPrice; |
| 187 | + private ?float $underlyingAssetPrice = null; |
188 | 188 |
|
189 | 189 | #[ORM\Column(type: 'float', nullable: true)] |
190 | | - private ?float $renovationReserve; |
| 190 | + private ?float $renovationReserve = null; |
191 | 191 |
|
192 | 192 | #[ORM\Column(type: 'float', nullable: true)] |
193 | | - private ?float $propertyMaintenanceMonthly; |
| 193 | + private ?float $propertyMaintenanceMonthly = null; |
194 | 194 |
|
195 | 195 | #[ORM\Column(type: 'date', nullable: true)] |
196 | | - private ?DateTimeInterface $rentStartDate; |
| 196 | + private ?DateTimeInterface $rentStartDate = null; |
197 | 197 |
|
198 | 198 | #[ORM\Column(type: Types::JSON, nullable: true)] |
199 | 199 | private ?array $originSecondaryMarketplaces = []; |
200 | 200 |
|
201 | 201 | #[ORM\Column(type: 'date', nullable: true)] |
202 | | - private ?DateTimeInterface $initialLaunchDate; |
| 202 | + private ?DateTimeInterface $initialLaunchDate = null; |
203 | 203 |
|
204 | 204 | #[ORM\Column(type: 'integer', nullable: true)] |
205 | | - private ?int $seriesNumber; |
| 205 | + private ?int $seriesNumber = null; |
206 | 206 |
|
207 | 207 | #[ORM\Column(type: 'integer', nullable: true)] |
208 | | - private ?int $constructionYear; |
| 208 | + private ?int $constructionYear = null; |
209 | 209 |
|
210 | 210 | #[ORM\Column(type: 'string', length: 50, nullable: true)] |
211 | | - private ?string $constructionType; |
| 211 | + private ?string $constructionType = null; |
212 | 212 |
|
213 | 213 | #[ORM\Column(type: 'string', length: 100, nullable: true)] |
214 | | - private ?string $roofType; |
| 214 | + private ?string $roofType = null; |
215 | 215 |
|
216 | 216 | #[ORM\Column(type: 'string', length: 100, nullable: true)] |
217 | | - private ?string $assetParking; |
| 217 | + private ?string $assetParking = null; |
218 | 218 |
|
219 | 219 | #[ORM\Column(type: 'string', length: 100, nullable: true)] |
220 | | - private ?string $foundation; |
| 220 | + private ?string $foundation = null; |
221 | 221 |
|
222 | 222 | #[ORM\Column(type: 'string', length: 100, nullable: true)] |
223 | | - private ?string $heating; |
| 223 | + private ?string $heating = null; |
224 | 224 |
|
225 | 225 | #[ORM\Column(type: 'string', length: 100, nullable: true)] |
226 | | - private ?string $cooling; |
| 226 | + private ?string $cooling = null; |
227 | 227 |
|
228 | 228 | #[ORM\Column(type: 'integer', nullable: true)] |
229 | | - private ?int $tokenIdRules; |
| 229 | + private ?int $tokenIdRules = null; |
230 | 230 |
|
231 | 231 | #[ORM\Column(type: 'string', length: 20, nullable: true)] |
232 | | - private ?string $rentCalculationType; |
| 232 | + private ?string $rentCalculationType = null; |
233 | 233 |
|
234 | 234 | #[ORM\Column(type: 'float', nullable: true)] |
235 | | - private ?float $realtListingFeePercent; |
| 235 | + private ?float $realtListingFeePercent = null; |
236 | 236 |
|
237 | 237 | #[ORM\Column(type: 'float', nullable: true)] |
238 | | - private ?float $realtListingFee; |
| 238 | + private ?float $realtListingFee = null; |
239 | 239 |
|
240 | 240 | #[ORM\Column(type: 'float', nullable: true)] |
241 | | - private ?float $miscellaneousCosts; |
| 241 | + private ?float $miscellaneousCosts = null; |
242 | 242 |
|
243 | 243 | #[ORM\Column(type: 'integer', nullable: true)] |
244 | | - private ?int $propertyStories; |
| 244 | + private ?int $propertyStories = null; |
245 | 245 |
|
246 | 246 | #[ORM\Column(type: 'string', length: 42, unique: true)] |
247 | | - private ?string $uuid; |
| 247 | + private ?string $uuid = null; |
248 | 248 |
|
249 | 249 | #[ORM\Column(type: 'integer', nullable: true)] |
250 | | - private ?int $totalTokensRegSummed; |
| 250 | + private ?int $totalTokensRegSummed = null; |
251 | 251 |
|
252 | 252 | #[ORM\Column(type: 'string', length: 50, nullable: true)] |
253 | | - private ?string $rentalType; |
| 253 | + private ?string $rentalType = null; |
254 | 254 |
|
255 | 255 | #[ORM\Column(type: 'string', length: 100, nullable: true)] |
256 | | - private ?string $subsidyStatus; |
| 256 | + private ?string $subsidyStatus = null; |
257 | 257 |
|
258 | 258 | #[ORM\Column(type: 'float', nullable: true)] |
259 | | - private ?float $subsidyStatusValue; |
| 259 | + private ?float $subsidyStatusValue = null; |
260 | 260 |
|
261 | 261 | #[ORM\Column(type: 'string', length: 100, nullable: true)] |
262 | | - private ?string $subsidyBy; |
| 262 | + private ?string $subsidyBy = null; |
263 | 263 |
|
264 | 264 | #[ORM\Column(type: 'string', length: 100, nullable: true)] |
265 | | - private ?string $productType; |
| 265 | + private ?string $productType = null; |
266 | 266 |
|
267 | 267 | #[ORM\Column(type: 'string', length: 100, nullable: true)] |
268 | | - private ?string $neighborhood; |
| 268 | + private ?string $neighborhood = null; |
269 | 269 |
|
270 | 270 | public function getId(): ?int |
271 | 271 | { |
|
0 commit comments