Table of Contents

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

ulong

CoverStickerId

Gets the id of a sticker in the pack which is shown as the pack's icon.

public ulong? CoverStickerId { get; }

Property Value

ulong?

Description

Gets the description of the sticker pack.

public string Description { get; }

Property Value

string

Id

Gets the id of the sticker pack.

public ulong Id { get; }

Property Value

ulong

Name

Gets the name of the sticker pack.

public string Name { get; }

Property Value

string

SkuId

Gets the id of the pack's SKU.

public ulong SkuId { get; }

Property Value

ulong

Stickers

Gets a collection of the stickers in the pack.

public IReadOnlyCollection<TSticker> Stickers { get; }

Property Value

IReadOnlyCollection<TSticker>