Struct telegram_typings::InlineQueryResultArticle [] [src]

pub struct InlineQueryResultArticle {
    pub type_tl: String,
    pub id: String,
    pub title: String,
    pub input_message_content: Box<InputMessageContent>,
    pub reply_markup: Option<Box<InlineKeyboardMarkup>>,
    pub url: Option<String>,
    pub hide_url: Option<bool>,
    pub description: Option<String>,
    pub thumb_url: Option<String>,
    pub thumb_width: Option<i64>,
    pub thumb_height: Option<i64>,
}

Represents a link to an article or web page.

Fields

Type of the result, must be article

Unique identifier for this result, 1-64 Bytes

Title of the result

Content of the message to be sent

Inline keyboard attached to the message See https://core.telegram.org/bots/api/bots#inline-keyboards-and-on-the-fly-updating

URL of the result

Pass True, if you don't want the URL to be shown in the message

Short description of the result

Url of the thumbnail for the result

Thumbnail width

Thumbnail height

Trait Implementations

impl Debug for InlineQueryResultArticle
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for InlineQueryResultArticle
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations