deleteLike

@DELETE(value = "likes/{id}")
abstract suspend fun deleteLike(@Path(value = "id") id: String): ApiLike

Deletes a Like item from the API.

Return

The deleted ApiLike item.

Parameters

id

The ID of the Like item to delete.