feat(Network): remove item ID from delete request body

This commit is contained in:
karashiiro 2021-07-25 00:27:48 -07:00
parent 6768a3c0fc
commit 1789058e45
2 changed files with 0 additions and 7 deletions

View file

@ -19,12 +19,6 @@ namespace Dalamud.Game.Network.MarketBoardUploaders.Universalis
[JsonProperty("listingID")]
public string ListingId { get; set; }
/// <summary>
/// Gets or sets the item ID of the item that was purchased.
/// </summary>
[JsonProperty("itemID")]
public uint ItemId { get; set; }
/// <summary>
/// Gets or sets the quantity of the item that was purchased.
/// </summary>

View file

@ -149,7 +149,6 @@ namespace Dalamud.Game.Network.Universalis.MarketBoardUploaders
var purchaseRequest = new UniversalisItemListingDeleteRequest
{
ItemId = itemId,
PricePerUnit = purchaseHandler.PricePerUnit,
Quantity = purchaseHandler.ItemQuantity,
ListingId = purchaseHandler.ListingId.ToString(),