//! Generated by `codegen_payloads`, do not edit by hand.
use serde::Serialize;
use crate::types::True;
impl_payload! {
/// Use this method to change the bot's short description, which is shown on the bot's profile page and is sent together with the link when users share the bot. Returns True on success.
#[derive(Debug, PartialEq, Eq, Hash, Default, Clone, Serialize)]
pub SetMyShortDescription (SetMyShortDescriptionSetters) => True {
optional {
/// New short description for the bot; 0-120 characters. Pass an empty string to remove the dedicated short description for the given language.
pub short_description: String [into],
/// A two-letter ISO 639-1 language code. If empty, the short description will be applied to all users for whose language there is no dedicated short description.
pub language_code: String [into],
}
}
}