We are coding our client with Retrofit, and we have a function to update a person using PersonDto and an id: suspend fun update(id: Long, user: PersonDto). The result is a PersonDto in the endpoint: api/users/{id}. Please write the correct annotation to perform the operation.
/* Write your code */
suspend fun update(@Path("id") id: Long, @Body user: PersonDto): Response<PersonDto>