GuildMember

@Serializable
data class GuildMember(val name: String, val rank: String, val title: String?, val level: Int, val vocation: Vocation, val joinedOn: LocalDate, val isOnline: Boolean) : BaseCharacter, CharacterLevel(source)

A character that is part of a Guild.

Constructors

Link copied to clipboard
constructor(name: String, rank: String, title: String?, level: Int, vocation: Vocation, joinedOn: LocalDate, isOnline: Boolean)

Properties

Link copied to clipboard

Whether the character is currently online or not.

Link copied to clipboard

The date when the character joined the guild.

Link copied to clipboard
open override val level: Int

The current level of the character.

Link copied to clipboard
open override val name: String

The name of the character.

Link copied to clipboard

The name of the rank the character holds.

Link copied to clipboard

The party shared experience range of the character.

Link copied to clipboard

The title of the character in the guild.

Link copied to clipboard
open val url: String

The URL to the character's information page.

Link copied to clipboard

The vocation of the character.