Class StickerPack<TSticker>
- Namespace
- Discord
- Assembly
- Discord.Net.Core.dll
Represents a discord sticker pack.
public class StickerPack<TSticker> where TSticker : ISticker
Type Parameters
TSticker
The type of the stickers within the collection.
- Inheritance
-
StickerPack<TSticker>
- Inherited Members
Properties
BannerAssetId
Gets the id of the sticker pack's banner image
public ulong BannerAssetId { get; }
Property Value
CoverStickerId
Gets the id of a sticker in the pack which is shown as the pack's icon.
public ulong? CoverStickerId { get; }
Property Value
Description
Gets the description of the sticker pack.
public string Description { get; }
Property Value
Id
Gets the id of the sticker pack.
public ulong Id { get; }
Property Value
Name
Gets the name of the sticker pack.
public string Name { get; }
Property Value
SkuId
Gets the id of the pack's SKU.
public ulong SkuId { get; }
Property Value
Stickers
Gets a collection of the stickers in the pack.
public IReadOnlyCollection<TSticker> Stickers { get; }
Property Value
- IReadOnlyCollection<TSticker>