Stash

data class Stash(val id: Int, val time: String, val user: String? = null, val type: String, val operation: String, val itemId: Int, val count: Int, val coins: Int) : GW2v2GuildLogEntry

A log entry indicating that the user has deposited/withdrawn an item into the guild stash.

Parameters

id

the log entry's ID

time

ISO-8601 timestamp for when the log entry was created

user

the account name of the guild member who generated this log entry

type

the type of log entry

operation

the action (may be "deposit", "withdraw" or "move"

itemId

the item's ID

count

how many of the item was deposited

coins

the amount of deposited coins

Constructors

Link copied to clipboard
constructor(id: Int, time: String, user: String? = null, type: String, operation: String, itemId: Int, count: Int, coins: Int)

Properties

Link copied to clipboard
val coins: Int

This field holds the amount of deposited coins.

Link copied to clipboard
val count: Int

This field holds how many of the item was deposited.

Link copied to clipboard
open override val id: Int
Link copied to clipboard
@SerialName(value = "item_id")
val itemId: Int

This field holds the item's ID.

Link copied to clipboard

This field holds the action (may be "deposit", "withdraw" or "move".

Link copied to clipboard
open override val time: String
Link copied to clipboard
open override val type: String
Link copied to clipboard
open override val user: String? = null