/** * ## BotShortDescription * This object represents the bot's short description. * @see https://core.telegram.org/bots/api#botshortdescription */ export type BotShortDescription = { /** * The bot's short description */ short_description: string; };