Select the option that returns the @RequestBody variable.
Java
@PutMapping("/employees/{id}")
public Employee updateEmployee(@PathVariable long id, @RequestBody Employee employee) {
______________;
}
Kotlin
@PutMapping("/employees/{id}")
fun updateEmployee(@PathVariable id: Long, @RequestBody employee: Employee): Employee {
______________
}