``` var editDeal = deal.ToUpdate(); editDeal.Status = DealStatus.won; await client.Deal.Edit(deal.Id, editDeal); ``` This snippet will not only update the deal's status but also set its value to 0. This is not the case when I update the deal using Postman.
This snippet will not only update the deal's status but also set its value to 0. This is not the case when I update the deal using Postman.