ExGram.Model.InlineQueryResultCachedDocument (ex_gram v0.40.0) View Source
Represents a link to a file stored on the Telegram servers. 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.
Check the documentation of this model in https://core.telegram.org/bots/api#inlinequeryresultcacheddocument
Link to this section Summary
Link to this section Types
Specs
t() :: %ExGram.Model.InlineQueryResultCachedDocument{
caption: String.t() | nil,
caption_entities: [ExGram.Model.MessageEntity.t()] | nil,
description: String.t() | nil,
document_file_id: String.t(),
id: String.t(),
input_message_content: ExGram.Model.InputMessageContent.t() | nil,
parse_mode: String.t() | nil,
reply_markup: ExGram.Model.InlineKeyboardMarkup.t() | nil,
title: String.t(),
type: String.t()
}