Class MarketBoardPurchase
Represents market board purchase information. This message is received from the server when a purchase is made at a market board.
Assembly: Dalamud.dll
View Source
Declaration
public class MarketBoardPurchase : IMarketBoardPurchase
Implements:
Dalamud.Game.Network.Structures.IMarketBoardPurchase
Properties
CatalogId
Gets the item ID of the item that was purchased.
View Source
Declaration
public uint CatalogId { get; }
ItemQuantity
Gets the quantity of the item that was purchased.
View Source
Declaration
public uint ItemQuantity { get; }
Methods
Read(nint)
Reads market board purchase information from the struct at the provided pointer.
View Source
Declaration
public static MarketBoardPurchase Read(nint dataPtr)
Returns
Dalamud.Game.Network.Structures.MarketBoardPurchase: An object representing the data read.
Parameters
Type | Name | Description |
---|---|---|
System.IntPtr | dataPtr | A pointer to a struct containing market board purchase information from the server. |