GW2v2GuildStashSection

@Serializable
data class GW2v2GuildStashSection(val upgradeId: Int, val size: Int, val coins: Int, val note: String, val inventory: List<GW2v2GuildStashSection.GuildStashSlot?>)

Information about a section of a guild's vault.

Parameters

upgradeId

the ID of the guild upgrade that granted access to this section of the guild's vault

size

the number of slots in this section of the guild's vault

coins

the number of coins deposited in this section of the guild's vault

note

the description set for this section of the guild's vault

inventory

the items in this section of the guild's vault

Constructors

Link copied to clipboard
constructor(upgradeId: Int, size: Int, coins: Int, note: String, inventory: List<GW2v2GuildStashSection.GuildStashSlot?>)

Types

Link copied to clipboard
@Serializable
data class GuildStashSlot(val id: GW2ItemId, val count: Int)

Information about an item in a guild vault's slot.

Properties

Link copied to clipboard
val coins: Int

This field holds the number of coins deposited in this section of the guild's vault.

Link copied to clipboard

This field holds the items in this section of the guild's vault.

Link copied to clipboard

This field holds the description set for this section of the guild's vault.

Link copied to clipboard
val size: Int

This field holds the number of slots in this section of the guild's vault.

Link copied to clipboard
@SerialName(value = "upgrade_id")
val upgradeId: Int

This field holds the ID of the guild upgrade that granted access to this section of the guild's vault.