pub async fn create_new_sticker_set(
user_id: i64,
title: String,
name: String,
sticker_type: StickerType,
needs_repainting: bool,
stickers: Vec<InputSticker>,
source: String,
client_id: i32,
) -> Result<StickerSet, Error>Expand description
Creates a new sticker set. Returns the newly created sticker set
§Arguments
user_id- Sticker set owner; ignored for regular userstitle- Sticker set title; 1-64 charactersname- Sticker set name. Can contain only English letters, digits and underscores. Must end with “by” (<bot_username> is case insensitive) for bots; 0-64 characters. If empty, then the name returned by getSuggestedStickerSetName will be used automaticallysticker_type- Type of the stickers in the setneeds_repainting- Pass true if stickers in the sticker set must be repainted; for custom emoji sticker sets onlystickers- List of stickers to be added to the set; 1-200 stickers for custom emoji sticker sets, and 1-120 stickers otherwise. For TGS stickers, uploadStickerFile must be used before the sticker is shownsource- Source of the sticker set; may be empty if unknownclient_id- The client id to send the request to