GW2v2GuildLogEntry

Information about a logged guild event.

Inheritors

Types

Link copied to clipboard
data class Invited(val id: Int, val time: String, val user: String? = null, val type: String, val invitedBy: String) : GW2v2GuildLogEntry

A log entry indicating that the user has been invited to the guild.

Link copied to clipboard
data class Joined(val id: Int, val time: String, val user: String? = null, val type: String) : GW2v2GuildLogEntry

A log entry indicating that the user joined the guild.

Link copied to clipboard
data class Kick(val id: Int, val time: String, val user: String? = null, val type: String, val kickedBy: String) : GW2v2GuildLogEntry

A log entry indicating that the user has been kicked from the guild.

Link copied to clipboard
data class Motd(val id: Int, val time: String, val user: String? = null, val type: String, val motd: String) : GW2v2GuildLogEntry

A log entry indicating that the user has changed the guild's MOTD.

Link copied to clipboard
data class RankChange(val id: Int, val time: String, val user: String? = null, val type: String, val changedBy: String, val oldRank: String, val newRank: String) : GW2v2GuildLogEntry

A log entry indicating that the rank for the user changed.

Link copied to clipboard
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.

Link copied to clipboard
data class Treasury(val id: Int, val time: String, val user: String? = null, val type: String, val itemId: Int, val count: Int) : GW2v2GuildLogEntry

A log entry indicating that the user has deposited an item into the guild's treasury.

Link copied to clipboard
data class Upgrade(val id: Int, val time: String, val user: String? = null, val type: String, val action: String, val count: Int? = null, val upgradeId: Int, val recipeId: Int? = null) : GW2v2GuildLogEntry

A log entry indicating that the user has interacted with a guild upgrade.

Properties

Link copied to clipboard
abstract val id: Int

This field holds the log entry's ID.

Link copied to clipboard
abstract val time: String

This field holds ISO-8601 timestamp for when the log entry was created.

Link copied to clipboard
abstract val type: String

This field holds the type of log entry.

Link copied to clipboard
abstract val user: String?

This field holds the account name of the guild member who generated this log entry.