pub struct InlineQueryResultDocument {Show 13 fields
pub type_tl: String,
pub id: String,
pub title: String,
pub caption: Option<String>,
pub parse_mode: Option<String>,
pub document_url: String,
pub mime_type: String,
pub description: Option<String>,
pub reply_markup: Option<Box<InlineKeyboardMarkup>>,
pub input_message_content: Option<Box<InputMessageContent>>,
pub thumb_url: Option<String>,
pub thumb_width: Option<i64>,
pub thumb_height: Option<i64>,
}Expand description
Represents a link to a file. By default, this file will be sent by the user with an optional caption. Alternatively, you can use input_message_content to send a message with the specified content instead of the file. Currently, only .PDF and .ZIP files can be sent using this method.
Fields§
§type_tl: StringType of the result, must be document
id: StringUnique identifier for this result, 1-64 bytes
title: StringTitle for the result
caption: Option<String>Caption of the document to be sent, 0-200 characters
parse_mode: Option<String>Send Markdown or HTML, if you want Telegram apps to show bold, italic, fixed-width text or inline URLs in the media caption. See https://core.telegram.org/bots/api#markdown-style See https://core.telegram.org/bots/api#html-style See https://core.telegram.org/bots/api#formatting-options
document_url: StringA valid URL for the file
mime_type: StringMime type of the content of the file, either “application/pdf” or “application/zip”
description: Option<String>Short description of the result
reply_markup: Option<Box<InlineKeyboardMarkup>>Inline keyboard attached to the message
input_message_content: Option<Box<InputMessageContent>>Content of the message to be sent instead of the file
thumb_url: Option<String>URL of the thumbnail (jpeg only) for the file
thumb_width: Option<i64>Thumbnail width
thumb_height: Option<i64>Thumbnail height
Trait Implementations§
Source§impl Clone for InlineQueryResultDocument
impl Clone for InlineQueryResultDocument
Source§fn clone(&self) -> InlineQueryResultDocument
fn clone(&self) -> InlineQueryResultDocument
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more