RankChange

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.

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

changedBy

the account name of the guild member who changed the rank of the user

oldRank

the name of the old rank

newRank

the name of the new rank

Constructors

Link copied to clipboard
constructor(id: Int, time: String, user: String? = null, type: String, changedBy: String, oldRank: String, newRank: String)

Properties

Link copied to clipboard
@SerialName(value = "changed_by")
val changedBy: String

This field holds the account name of the guild member who changed the rank of the user.

Link copied to clipboard
open override val id: Int
Link copied to clipboard
@SerialName(value = "new_rank")
val newRank: String

This field holds the name of the new rank.

Link copied to clipboard
@SerialName(value = "old_rank")
val oldRank: String

This field holds the name of the old rank.

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