putCantEat

@PUT(value = "canteats/{id}")
abstract suspend fun putCantEat(@Path(value = "id") id: String, @Body cantEat: ApiCantEat): ApiCantEat

Updates a CantEat item in the API.

Return

The updated ApiCantEat item.

Parameters

id

The ID of the CantEat item to update.

cantEat

The updated CantEat item.