From a4b5cdb16fde6853486990878f019251eca5c542 Mon Sep 17 00:00:00 2001 From: stdkhai Date: Tue, 4 Jul 2023 22:38:56 +0300 Subject: [PATCH] add field --- configs.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configs.go b/configs.go index c007426..7973bac 100644 --- a/configs.go +++ b/configs.go @@ -2179,6 +2179,7 @@ type NewStickerSetConfig struct { Name string Title string Stickers []InputSticker + StickerFormat string StickerType string NeedsRepainting bool //optional; Pass True if stickers in the sticker set must be repainted to the color of text when used in messages, the accent color if used as emoji status, white on chat photos, or another appropriate color based on context; for custom emoji sticker sets only } @@ -2193,6 +2194,7 @@ func (config NewStickerSetConfig) params() (Params, error) { params.AddNonZero64("user_id", config.UserID) params["name"] = config.Name params["title"] = config.Title + params["sticker_format"] = config.StickerFormat params.AddBool("needs_repainting", config.NeedsRepainting) params.AddNonEmpty("sticker_type", string(config.StickerType))