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