Listing

@Serializable
data class Listing(val lastReviewTime: Long, val pricePerUnit: Int, val quantity: Short, val stainId: Int, val world: World? = null, val creatorName: String? = null, val creatorId: String? = null, val hq: Boolean, val isCrafted: Boolean, val listingId: String? = null, val materia: Array<Materia>? = null, val onMannequin: Boolean, retainerCityId: 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: Short, stainId: Int, world: World? = null, creatorName: String? = null, creatorId: String? = null, hq: Boolean, isCrafted: Boolean, listingId: String? = null, materia: Array<Materia>? = null, onMannequin: Boolean, retainerCityId: 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: Array<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
@Transient
val retainerCity: City

The City 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 = "worldName")
val world: World? = null

The World, if applicable.

Functions

Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
open override fun hashCode(): Int
Link copied to clipboard
open override fun toString(): String