Guild

@Serializable
data class Guild(val name: String, val world: String, val logoUrl: String, val description: String?, val foundingDate: LocalDate, val isActive: Boolean, val applicationsOpen: Boolean, val homepage: String?, val guildHall: GuildHall?, val disbandingDate: LocalDate?, val disbandingReason: String?, val members: List<GuildMember>, val invited: List<GuildInvite>) : BaseGuild(source)

A Tibia guild.

Constructors

Link copied to clipboard
constructor(name: String, world: String, logoUrl: String, description: String?, foundingDate: LocalDate, isActive: Boolean, applicationsOpen: Boolean, homepage: String?, guildHall: GuildHall?, disbandingDate: LocalDate?, disbandingReason: String?, members: List<GuildMember>, invited: List<GuildInvite>)

Properties

Link copied to clipboard

Whether applications are open or not.

Link copied to clipboard

The description of the guild.

Link copied to clipboard

The date when the guild is set to be disbanded.

Link copied to clipboard

The reason why it will be disbanded.

Link copied to clipboard

The date when the guild was founded.

Link copied to clipboard

The guildhall rented by the guild.

Link copied to clipboard

The URL to the guild's homepage, if set.

Link copied to clipboard

The list of characters currently invited to the guild.

Link copied to clipboard

Whether the guild is active or still in formation.

Link copied to clipboard

The leader of the guild.

Link copied to clipboard

The URL to the guild's logo, or the default logo.

Link copied to clipboard

The number of members in the guild.

Link copied to clipboard

The list of members in the guild.

Link copied to clipboard

A mapping of the members by their rank.

Link copied to clipboard
open override val name: String

The name of the guild.

Link copied to clipboard

The number of online members in the guild.

Link copied to clipboard

The list of members currently online.

Link copied to clipboard

A list of the guild ranks.

Link copied to clipboard
open val url: String

The URL to the guild's page on Tibia.com

Link copied to clipboard

The vice leaders of the guild.

Link copied to clipboard

The world where the guild is in.