Okay, Option<Vec<T>> is weird..)

This commit is contained in:
Сырцев Вадим Игоревич 2024-06-11 20:05:58 +03:00
parent 2ac01496f2
commit 79a6969dee

View file

@ -25,5 +25,5 @@ pub struct InputSticker {
/// List of 0-20 search keywords for the sticker with total length of up to
/// 64 characters. For “regular” and “custom_emoji” stickers only.
pub keywords: Option<Vec<String>>,
pub keywords: Vec<String>,
}