Interface EmojiInterface

interface EmojiInterface {
    animated?: boolean;
    available?: boolean;
    id: string;
    managed?: boolean;
    name: string;
    require_colons?: boolean;
    roles?: string[];
    user?: UserInterface;
}

Properties

animated?: boolean

animated whether this emoji is animated

Returns

available?: boolean

available whether this emoji can be used, may be false due to loss of Server Boosts

Returns

id: string

id emoji id

Returns

managed?: boolean

managed whether this emoji is managed

Returns

name: string

name emoji name

Returns

require_colons?: boolean

require_colons whether this emoji must be wrapped in colons

Returns

roles?: string[]

roles roles allowed to use this emoji

Returns

user user that created this emoji

Returns

Generated using TypeDoc