deleteCantEat

@DELETE(value = "canteats/{id}")
abstract suspend fun deleteCantEat(@Path(value = "id") id: String): ApiCantEat

Deletes a CantEat item from the API.

Return

The deleted ApiCantEat item.

Parameters

id

The ID of the CantEat item to delete.