interface JSONGuild {
    bannerURL?: null | string;
    channels: AnyJSONChannel[];
    createdAt: Date;
    defaultChannelID?: string;
    description?: string;
    iconURL?: null | string;
    id: string;
    members: JSONMember[];
    name: string;
    ownerID: string;
    timezone?: string;
    type?: string;
    url?: string;
    verified: boolean;
}

Hierarchy (view full)

Properties

bannerURL?: null | string

Guild banner URL.

channels: AnyJSONChannel[]

Cached guild channels.

createdAt: Date

When this guild was created.

defaultChannelID?: string

Default channel of the guild.

description?: string

Guild description.

iconURL?: null | string

Guild icon URL.

id: string
members: JSONMember[]

Cached guild members.

name: string

The name of the guild.

ownerID: string

ID of the guild owner.

timezone?: string

Guild's timezone.

type?: string

Guild type.

url?: string

The URL of the guild.

verified: boolean

If true, the guild is verified.