/** * ## BotName * This object represents the bot's name. * @see https://core.telegram.org/bots/api#botname */ export type BotName = { /** * The bot's name */ name: string; };