DayCondition.java 11.9 KB
Newer Older
EnesKarakas's avatar
EnesKarakas committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
package io.swagger.model;

import java.util.Objects;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import io.swagger.v3.oas.annotations.media.Schema;
import org.springframework.validation.annotation.Validated;
import javax.validation.Valid;
import javax.validation.constraints.*;

/**
 * DayCondition
 */
@Validated
@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.SpringCodegen", date = "2024-06-06T14:20:51.790816423Z[GMT]")


public class DayCondition   {
  @JsonProperty("maxtemp_c")
  private Float maxtempC = null;

  @JsonProperty("maxtemp_f")
  private Float maxtempF = null;

  @JsonProperty("mintemp_c")
  private Float mintempC = null;

  @JsonProperty("mintemp_f")
  private Float mintempF = null;

  @JsonProperty("avgtemp_c")
  private Float avgtempC = null;

  @JsonProperty("avgtemp_f")
  private Float avgtempF = null;

  @JsonProperty("maxwind_mph")
  private Float maxwindMph = null;

  @JsonProperty("maxwind_kph")
  private Float maxwindKph = null;

  @JsonProperty("totalprecip_mm")
  private Float totalprecipMm = null;

  @JsonProperty("totalprecip_in")
  private Float totalprecipIn = null;

  @JsonProperty("avgvis_km")
  private Float avgvisKm = null;

  @JsonProperty("avgvis_miles")
  private Float avgvisMiles = null;

  @JsonProperty("avghumidity")
  private Integer avghumidity = null;

  @JsonProperty("daily_will_it_rain")
  private Integer dailyWillItRain = null;

  @JsonProperty("daily_chance_of_rain")
  private Integer dailyChanceOfRain = null;

  @JsonProperty("daily_will_it_snow")
  private Integer dailyWillItSnow = null;

  @JsonProperty("daily_chance_of_snow")
  private Integer dailyChanceOfSnow = null;

  @JsonProperty("uv")
  private Float uv = null;

  public DayCondition maxtempC(Float maxtempC) {
    this.maxtempC = maxtempC;
    return this;
  }

  /**
   * Get maxtempC
   * @return maxtempC
   **/
  @Schema(description = "")
      @NotNull

    public Float getMaxtempC() {
    return maxtempC;
  }

  public void setMaxtempC(Float maxtempC) {
    this.maxtempC = maxtempC;
  }

  public DayCondition maxtempF(Float maxtempF) {
    this.maxtempF = maxtempF;
    return this;
  }

  /**
   * Get maxtempF
   * @return maxtempF
   **/
  @Schema(description = "")
      @NotNull

    public Float getMaxtempF() {
    return maxtempF;
  }

  public void setMaxtempF(Float maxtempF) {
    this.maxtempF = maxtempF;
  }

  public DayCondition mintempC(Float mintempC) {
    this.mintempC = mintempC;
    return this;
  }

  /**
   * Get mintempC
   * @return mintempC
   **/
  @Schema(description = "")
      @NotNull

    public Float getMintempC() {
    return mintempC;
  }

  public void setMintempC(Float mintempC) {
    this.mintempC = mintempC;
  }

  public DayCondition mintempF(Float mintempF) {
    this.mintempF = mintempF;
    return this;
  }

  /**
   * Get mintempF
   * @return mintempF
   **/
  @Schema(description = "")
      @NotNull

    public Float getMintempF() {
    return mintempF;
  }

  public void setMintempF(Float mintempF) {
    this.mintempF = mintempF;
  }

  public DayCondition avgtempC(Float avgtempC) {
    this.avgtempC = avgtempC;
    return this;
  }

  /**
   * Get avgtempC
   * @return avgtempC
   **/
  @Schema(description = "")
      @NotNull

    public Float getAvgtempC() {
    return avgtempC;
  }

  public void setAvgtempC(Float avgtempC) {
    this.avgtempC = avgtempC;
  }

  public DayCondition avgtempF(Float avgtempF) {
    this.avgtempF = avgtempF;
    return this;
  }

  /**
   * Get avgtempF
   * @return avgtempF
   **/
  @Schema(description = "")
      @NotNull

    public Float getAvgtempF() {
    return avgtempF;
  }

  public void setAvgtempF(Float avgtempF) {
    this.avgtempF = avgtempF;
  }

  public DayCondition maxwindMph(Float maxwindMph) {
    this.maxwindMph = maxwindMph;
    return this;
  }

  /**
   * Get maxwindMph
   * @return maxwindMph
   **/
  @Schema(description = "")
      @NotNull

    public Float getMaxwindMph() {
    return maxwindMph;
  }

  public void setMaxwindMph(Float maxwindMph) {
    this.maxwindMph = maxwindMph;
  }

  public DayCondition maxwindKph(Float maxwindKph) {
    this.maxwindKph = maxwindKph;
    return this;
  }

  /**
   * Get maxwindKph
   * @return maxwindKph
   **/
  @Schema(description = "")
      @NotNull

    public Float getMaxwindKph() {
    return maxwindKph;
  }

  public void setMaxwindKph(Float maxwindKph) {
    this.maxwindKph = maxwindKph;
  }

  public DayCondition totalprecipMm(Float totalprecipMm) {
    this.totalprecipMm = totalprecipMm;
    return this;
  }

  /**
   * Get totalprecipMm
   * @return totalprecipMm
   **/
  @Schema(description = "")
      @NotNull

    public Float getTotalprecipMm() {
    return totalprecipMm;
  }

  public void setTotalprecipMm(Float totalprecipMm) {
    this.totalprecipMm = totalprecipMm;
  }

  public DayCondition totalprecipIn(Float totalprecipIn) {
    this.totalprecipIn = totalprecipIn;
    return this;
  }

  /**
   * Get totalprecipIn
   * @return totalprecipIn
   **/
  @Schema(description = "")
      @NotNull

    public Float getTotalprecipIn() {
    return totalprecipIn;
  }

  public void setTotalprecipIn(Float totalprecipIn) {
    this.totalprecipIn = totalprecipIn;
  }

  public DayCondition avgvisKm(Float avgvisKm) {
    this.avgvisKm = avgvisKm;
    return this;
  }

  /**
   * Get avgvisKm
   * @return avgvisKm
   **/
  @Schema(description = "")
      @NotNull

    public Float getAvgvisKm() {
    return avgvisKm;
  }

  public void setAvgvisKm(Float avgvisKm) {
    this.avgvisKm = avgvisKm;
  }

  public DayCondition avgvisMiles(Float avgvisMiles) {
    this.avgvisMiles = avgvisMiles;
    return this;
  }

  /**
   * Get avgvisMiles
   * @return avgvisMiles
   **/
  @Schema(description = "")
      @NotNull

    public Float getAvgvisMiles() {
    return avgvisMiles;
  }

  public void setAvgvisMiles(Float avgvisMiles) {
    this.avgvisMiles = avgvisMiles;
  }

  public DayCondition avghumidity(Integer avghumidity) {
    this.avghumidity = avghumidity;
    return this;
  }

  /**
   * Get avghumidity
   * @return avghumidity
   **/
  @Schema(description = "")
      @NotNull

    public Integer getAvghumidity() {
    return avghumidity;
  }

  public void setAvghumidity(Integer avghumidity) {
    this.avghumidity = avghumidity;
  }

  public DayCondition dailyWillItRain(Integer dailyWillItRain) {
    this.dailyWillItRain = dailyWillItRain;
    return this;
  }

  /**
   * Get dailyWillItRain
   * @return dailyWillItRain
   **/
  @Schema(description = "")
      @NotNull

    public Integer getDailyWillItRain() {
    return dailyWillItRain;
  }

  public void setDailyWillItRain(Integer dailyWillItRain) {
    this.dailyWillItRain = dailyWillItRain;
  }

  public DayCondition dailyChanceOfRain(Integer dailyChanceOfRain) {
    this.dailyChanceOfRain = dailyChanceOfRain;
    return this;
  }

  /**
   * Get dailyChanceOfRain
   * @return dailyChanceOfRain
   **/
  @Schema(description = "")
      @NotNull

    public Integer getDailyChanceOfRain() {
    return dailyChanceOfRain;
  }

  public void setDailyChanceOfRain(Integer dailyChanceOfRain) {
    this.dailyChanceOfRain = dailyChanceOfRain;
  }

  public DayCondition dailyWillItSnow(Integer dailyWillItSnow) {
    this.dailyWillItSnow = dailyWillItSnow;
    return this;
  }

  /**
   * Get dailyWillItSnow
   * @return dailyWillItSnow
   **/
  @Schema(description = "")
      @NotNull

    public Integer getDailyWillItSnow() {
    return dailyWillItSnow;
  }

  public void setDailyWillItSnow(Integer dailyWillItSnow) {
    this.dailyWillItSnow = dailyWillItSnow;
  }

  public DayCondition dailyChanceOfSnow(Integer dailyChanceOfSnow) {
    this.dailyChanceOfSnow = dailyChanceOfSnow;
    return this;
  }

  /**
   * Get dailyChanceOfSnow
   * @return dailyChanceOfSnow
   **/
  @Schema(description = "")
      @NotNull

    public Integer getDailyChanceOfSnow() {
    return dailyChanceOfSnow;
  }

  public void setDailyChanceOfSnow(Integer dailyChanceOfSnow) {
    this.dailyChanceOfSnow = dailyChanceOfSnow;
  }

  public DayCondition uv(Float uv) {
    this.uv = uv;
    return this;
  }

  /**
   * Get uv
   * @return uv
   **/
  @Schema(description = "")
      @NotNull

    public Float getUv() {
    return uv;
  }

  public void setUv(Float uv) {
    this.uv = uv;
  }


  @Override
  public boolean equals(java.lang.Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    DayCondition dayCondition = (DayCondition) o;
    return Objects.equals(this.maxtempC, dayCondition.maxtempC) &&
        Objects.equals(this.maxtempF, dayCondition.maxtempF) &&
        Objects.equals(this.mintempC, dayCondition.mintempC) &&
        Objects.equals(this.mintempF, dayCondition.mintempF) &&
        Objects.equals(this.avgtempC, dayCondition.avgtempC) &&
        Objects.equals(this.avgtempF, dayCondition.avgtempF) &&
        Objects.equals(this.maxwindMph, dayCondition.maxwindMph) &&
        Objects.equals(this.maxwindKph, dayCondition.maxwindKph) &&
        Objects.equals(this.totalprecipMm, dayCondition.totalprecipMm) &&
        Objects.equals(this.totalprecipIn, dayCondition.totalprecipIn) &&
        Objects.equals(this.avgvisKm, dayCondition.avgvisKm) &&
        Objects.equals(this.avgvisMiles, dayCondition.avgvisMiles) &&
        Objects.equals(this.avghumidity, dayCondition.avghumidity) &&
        Objects.equals(this.dailyWillItRain, dayCondition.dailyWillItRain) &&
        Objects.equals(this.dailyChanceOfRain, dayCondition.dailyChanceOfRain) &&
        Objects.equals(this.dailyWillItSnow, dayCondition.dailyWillItSnow) &&
        Objects.equals(this.dailyChanceOfSnow, dayCondition.dailyChanceOfSnow) &&
        Objects.equals(this.uv, dayCondition.uv);
  }

  @Override
  public int hashCode() {
    return Objects.hash(maxtempC, maxtempF, mintempC, mintempF, avgtempC, avgtempF, maxwindMph, maxwindKph, totalprecipMm, totalprecipIn, avgvisKm, avgvisMiles, avghumidity, dailyWillItRain, dailyChanceOfRain, dailyWillItSnow, dailyChanceOfSnow, uv);
  }

  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class DayCondition {\n");
    
    sb.append("    maxtempC: ").append(toIndentedString(maxtempC)).append("\n");
    sb.append("    maxtempF: ").append(toIndentedString(maxtempF)).append("\n");
    sb.append("    mintempC: ").append(toIndentedString(mintempC)).append("\n");
    sb.append("    mintempF: ").append(toIndentedString(mintempF)).append("\n");
    sb.append("    avgtempC: ").append(toIndentedString(avgtempC)).append("\n");
    sb.append("    avgtempF: ").append(toIndentedString(avgtempF)).append("\n");
    sb.append("    maxwindMph: ").append(toIndentedString(maxwindMph)).append("\n");
    sb.append("    maxwindKph: ").append(toIndentedString(maxwindKph)).append("\n");
    sb.append("    totalprecipMm: ").append(toIndentedString(totalprecipMm)).append("\n");
    sb.append("    totalprecipIn: ").append(toIndentedString(totalprecipIn)).append("\n");
    sb.append("    avgvisKm: ").append(toIndentedString(avgvisKm)).append("\n");
    sb.append("    avgvisMiles: ").append(toIndentedString(avgvisMiles)).append("\n");
    sb.append("    avghumidity: ").append(toIndentedString(avghumidity)).append("\n");
    sb.append("    dailyWillItRain: ").append(toIndentedString(dailyWillItRain)).append("\n");
    sb.append("    dailyChanceOfRain: ").append(toIndentedString(dailyChanceOfRain)).append("\n");
    sb.append("    dailyWillItSnow: ").append(toIndentedString(dailyWillItSnow)).append("\n");
    sb.append("    dailyChanceOfSnow: ").append(toIndentedString(dailyChanceOfSnow)).append("\n");
    sb.append("    uv: ").append(toIndentedString(uv)).append("\n");
    sb.append("}");
    return sb.toString();
  }

  /**
   * Convert the given object to string with each line indented by 4 spaces
   * (except the first line).
   */
  private String toIndentedString(java.lang.Object o) {
    if (o == null) {
      return "null";
    }
    return o.toString().replace("\n", "\n    ");
  }
}