gluon
    Preparing search index...

    Represents a role belonging to a guild.

    Implements

    • Role
    Index

    Constructors

    • Creates the structure for a role.

      Parameters

      • client: Client

        The client instance.

      • data: APIRole | RoleCacheJSON | RoleDiscordJSON | RoleStorageJSON

        The raw role data from Discord.

      • options: { guildId: string; nocache?: boolean }

        Additional options for this structure.

        • guildId: string

          The id of the guild that the role belongs to.

        • Optionalnocache?: boolean

          Whether this role should be cached or not.

      Returns Role

    Accessors

    • get _originalIconHash(): null | string

      The hash of the role's avatar, as it was received from Discord.

      Returns null | string

    • get displayIconURL(): null | string

      The icon URL of the role.

      Returns null | string

    • get guild(): null | Guild

      The guild that this role belongs to.

      Returns null | Guild

    • get guildId(): string

      The ID of the guild that this role belongs to.

      Returns string

    • get hoist(): boolean

      Whether the role is hoisted.

      Returns boolean

    • get managed(): boolean

      Whether the role is managed (by an application).

      Returns boolean

    • get mention(): string

      Returns a mention for the role.

      Returns string

    • get mentionable(): boolean

      Whether the role is mentionable.

      Returns boolean

    • get permissions(): string

      The permissions for the role.

      Returns string

    • get position(): number

      The position of the role.

      Returns number

    • get tags(): undefined | APIRoleTags

      The attributes of the role.

      Returns undefined | APIRoleTags

    Methods

    • Returns the JSON representation of this structure.

      Parameters

      • Optionalformat: JsonTypes

        The format to return the data in.

      Returns
          | {
              _attributes: number;
              color: number;
              hoist?: undefined;
              icon: null
              | string;
              id: string;
              managed?: undefined;
              mentionable?: undefined;
              name: string;
              permissions: string;
              position: number;
              tags: undefined | APIRoleTags;
          }
          | {
              _attributes?: undefined;
              color: number;
              hoist: boolean;
              icon: null
              | string;
              id: string;
              managed: boolean;
              mentionable: boolean;
              name: string;
              permissions: string;
              position: number;
              tags: undefined | APIRoleTags;
          }

    • Returns the URL of the role's icon.

      Parameters

      • id: string

        The ID of the role.

      • Optionalhash: null | string

        The hash of the role's icon.

      Returns null | string

    • Returns a mention for the role.

      Parameters

      • roleId: string

        The ID of the role to mention.

      • guildId: string

        The ID of the guild that the role belongs to.

      Returns string

    • Determines whether the role should be cached.

      Parameters

      • gluonCacheOptions: GluonCacheOptions

        The cache options for the client.

      • guildCacheOptions: GuildCacheOptions

        The cache options for the guild.

      Returns boolean