Listing

@Serializable
data class Listing(val lastReviewTime: Long, val pricePerUnit: Int, val quantity: Byte, val stainId: Int, val worldName: String? = null, val worldId: Short? = null, val creatorName: String? = null, val creatorId: String? = null, val hq: Boolean, val isCrafted: Boolean, val listingId: String? = null, val materia: List<Materia>? = null, val onMannequin: Boolean, val retainerCity: Byte, val retainerId: String? = null, val retainerName: String? = null, val sellerId: String? = null, val total: Int)

Constructors

Link copied to clipboard
constructor(lastReviewTime: Long, pricePerUnit: Int, quantity: Byte, stainId: Int, worldName: String? = null, worldId: Short? = null, creatorName: String? = null, creatorId: String? = null, hq: Boolean, isCrafted: Boolean, listingId: String? = null, materia: List<Materia>? = null, onMannequin: Boolean, retainerCity: Byte, retainerId: String? = null, retainerName: String? = null, sellerId: String? = null, total: Int)

Properties

Link copied to clipboard
@SerialName(value = "creatorID")
val creatorId: String? = null

A SHA256 hash of the creator's ID

Link copied to clipboard
val creatorName: String? = null

The creator's character name

Link copied to clipboard
val hq: Boolean

Whether or not the item is high-quality

Link copied to clipboard

Whether or not the item is crafted

Link copied to clipboard

The time that this listing was posted, in seconds since the UNIX epoch

Link copied to clipboard
@SerialName(value = "listingID")
val listingId: String? = null

A SHA256 hash of the ID of this listing

Link copied to clipboard
val materia: List<Materia>? = null

The materia on this item

Link copied to clipboard

Whether or not the item is being sold on a mannequin

Link copied to clipboard

The price per unit sold

Link copied to clipboard

The stack size sold

Link copied to clipboard

The city ID of the retainer

Link copied to clipboard
@SerialName(value = "retainerID")
val retainerId: String? = null

A SHA256 hash of the retainer's ID

Link copied to clipboard
val retainerName: String? = null

The retainer's name

Link copied to clipboard
@SerialName(value = "sellerID")
val sellerId: String? = null

A SHA256 hash of the seller's ID

Link copied to clipboard
@SerialName(value = "stainID")
val stainId: Int

The ID of the dye on this item

Link copied to clipboard
val total: Int

The total price

Link copied to clipboard
@SerialName(value = "worldID")
val worldId: Short? = null

The world ID, if applicable

Link copied to clipboard
val worldName: String? = null

The world name, if applicable