Skip to content

Commit

Permalink
fix: change the type Stickers field of StickerPack to array of pointer
Browse files Browse the repository at this point in the history
  • Loading branch information
SmoothieNoIce committed Feb 17, 2022
1 parent 2211a64 commit f16eebf
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions structs.go
Expand Up @@ -419,13 +419,13 @@ type Sticker struct {

// StickerPack represents a pack of standard stickers.
type StickerPack struct {
ID string `json:"id"`
Stickers []Sticker `json:"stickers"`
Name string `json:"name"`
SKUID string `json:"sku_id"`
CoverStickerID string `json:"cover_sticker_id"`
Description string `json:"description"`
BannerAssetID string `json:"banner_asset_id"`
ID string `json:"id"`
Stickers []*Sticker `json:"stickers"`
Name string `json:"name"`
SKUID string `json:"sku_id"`
CoverStickerID string `json:"cover_sticker_id"`
Description string `json:"description"`
BannerAssetID string `json:"banner_asset_id"`
}

// VerificationLevel type definition
Expand Down

0 comments on commit f16eebf

Please sign in to comment.