interface Sticker {
    asset?: "";
    available?: boolean;
    description: null | string;
    formatType: StickerFormatTypes;
    guildID?: string;
    id: string;
    name: string;
    packID?: string;
    sortValue?: number;
    tags: string;
    type: StickerTypes;
    user?: User;
}

Properties

asset?: ""

Deprecated

available?: boolean
description: null | string
formatType: StickerFormatTypes
guildID?: string
id: string
name: string
packID?: string
sortValue?: number
tags: string
user?: User