seyfert
    Preparing search index...

    Class Sticker

    Hierarchy

    • DiscordBase
    • ObjectToLower<Omit<APISticker, "user">>
      • Sticker
    Index

    Constructors

    Properties

    available?: boolean
    client: UsingClient
    description: null | string
    formatType: StickerFormatType
    guildId?: string
    id: string
    name: string
    packId?: string
    sortValue?: number
    tags: string
    type: StickerType
    user?: User

    Accessors

    Methods

    • Parameters

      • body: RESTPatchAPIGuildStickerJSONBody
      • Optionalreason: string

      Returns Promise<undefined | Sticker>

    • Parameters

      • __namedParameters: { client: UsingClient; guildId: string }

      Returns {
          create: (
              payload: CreateStickerBodyRequest,
              reason?: string,
          ) => Promise<Sticker>;
          delete: (stickerId: string, reason?: string) => Promise<void>;
          edit: (
              stickerId: string,
              body: RESTPatchAPIGuildStickerJSONBody,
              reason?: string,
          ) => Promise<Sticker>;
          fetch: (stickerId: string, force?: boolean) => Promise<Sticker>;
          list: () => Promise<Sticker[]>;
      }