GW2v2Guild

@Serializable
data class GW2v2Guild(val id: String, val name: String, val tag: String, val level: Int, val motd: String? = null, val influence: Int? = null, val aetherium: Int? = null, val favor: Int? = null, val resonance: Int? = null, val memberCount: Int? = null, val memberCapacity: Int? = null, val emblem: GW2v2Guild.Emblem)

Information about a guild.

Parameters

id

the guild's ID

name

the guild's name

tag

the guild's tag

level

the guild's level

motd

the guild's message of the day

influence

the guild's current influence

aetherium

the guild's current aetherium

favor

the guild's current favor

resonance

the guild's current resonance

memberCount

the guild's current member count

memberCapacity

the guild's current member capacity

emblem

the guild's emblem

Constructors

Link copied to clipboard
constructor(id: String, name: String, tag: String, level: Int, motd: String? = null, influence: Int? = null, aetherium: Int? = null, favor: Int? = null, resonance: Int? = null, memberCount: Int? = null, memberCapacity: Int? = null, emblem: GW2v2Guild.Emblem)

Types

Link copied to clipboard
@Serializable
data class Emblem(val background: GW2v2Guild.Emblem.Background, val foreground: GW2v2Guild.Emblem.Foreground, val flags: List<String>)

Properties

Link copied to clipboard
val aetherium: Int? = null

This field holds the guild's current aetherium.

Link copied to clipboard

This field holds the guild's emblem.

Link copied to clipboard
val favor: Int? = null

This field holds the guild's current favor.

Link copied to clipboard
val id: String

This field holds the guild's ID.

Link copied to clipboard
val influence: Int? = null

This field holds the guild's current influence.

Link copied to clipboard
val level: Int

This field holds the guild's level.

Link copied to clipboard
@SerialName(value = "member_capacity")
val memberCapacity: Int? = null

This field holds the guild's current member capacity.

Link copied to clipboard
@SerialName(value = "member_count")
val memberCount: Int? = null

This field holds the guild's current member count.

Link copied to clipboard
val motd: String? = null

This field holds the guild's message of the day.

Link copied to clipboard

This field holds the guild's name.

Link copied to clipboard
val resonance: Int? = null

This field holds the guild's current resonance.

Link copied to clipboard
val tag: String

This field holds the guild's tag.