Skip to content
Snippets Groups Projects

Client to call endpoints

Merged Diana Gulčíková requested to merge client_to_call_endpoints into milestone_2
15 files
+ 290
65
Compare changes
  • Side-by-side
  • Inline
Files
15
@@ -12,17 +12,12 @@ import lombok.Data;
@@ -12,17 +12,12 @@ import lombok.Data;
@Builder
@Builder
public class RaceDriverCarDto {
public class RaceDriverCarDto {
@NotNull
@Schema(description = "driver id", example = "1")
@Schema(description = "driver id", example = "1")
Long driverId;
Long driverId;
@NotNull
@Schema(description = "car id", example = "1")
@Schema(description = "car id", example = "1")
Long carId;
Long carId;
@Schema(description = "driver name", example = "Charles Leclerc")
String driverName;
@Schema(description = "drivers position in the race", example = "1")
@Schema(description = "drivers position in the race", example = "1")
int position;
Integer position;
}
}
Loading