Interface JSONUserClient

interface JSONUserClient {
    avatarURL: null | string;
    bannerURL: null | string;
    bot: boolean;
    botID: string;
    createdAt: Date;
    id: string;
    ownerID: string;
    type: null | UserTypes;
    username: string;
}

Hierarchy

Properties

avatarURL: null | string

Current avatar url of the user.

bannerURL: null | string

Current banned url of the user.

bot: boolean

If true, the user is a bot.

botID: string

Client User Bot ID

createdAt: Date

When the bot client was created.

id: string
ownerID: string

ID of the bot's owner.

type: null | UserTypes

User type

username: string

User's username.