Interface PlayerGuildData

Holds information about a players Guild

interface PlayerGuildData {
    name: null | string;
    rank: null | GuildRank;
    tag: null | string;
    uuid: null | string;
    fetch(options?): Promise<Guild>;
}

Properties

Methods

Properties

name: null | string

The name of the players guild, if applicable

rank: null | GuildRank

The players rank in the guild, if applicable

tag: null | string

The tag of the players guild, if applicable

uuid: null | string

The UUID of the players guild, if applicable

Methods

  • Returns the API object of the guild, if applicable

    This method causes API requests.

    Parameters

    • Optional options: GuildRequestOptions

      The options for the request; the field guild has no effect

    Returns Promise<Guild>

Generated using TypeDoc