Skip to main content

Class MarketBoardHistory

This class represents the market board history from a game network packet.

Assembly: Dalamud.dll
View Source
Declaration
public class MarketBoardHistory : IMarketBoardHistory

Implements:
Dalamud.Game.Network.Structures.IMarketBoardHistory

Properties

CatalogId

Gets the catalog ID.

View Source
Declaration
public uint CatalogId { get; }

ItemId

Gets the ID (for EXD) for the item being sold.

View Source
Declaration
public uint ItemId { get; }

HistoryListings

Gets the list of individual item listings.

View Source
Declaration
public IReadOnlyList<IMarketBoardHistoryListing> HistoryListings { get; }

Methods

Read(nint)

Read a Dalamud.Game.Network.Structures.MarketBoardHistory object from memory.

View Source
Declaration
public static MarketBoardHistory Read(nint dataPtr)
Returns

Dalamud.Game.Network.Structures.MarketBoardHistory: A new Dalamud.Game.Network.Structures.MarketBoardHistory object.

Parameters
TypeNameDescription
System.IntPtrdataPtrAddress to read.

Implements