Class InlineQueryResult
- java.lang.Object
-
- org.apache.camel.component.telegram.model.InlineQueryResult
-
- Direct Known Subclasses:
InlineQueryResultArticle,InlineQueryResultAudio,InlineQueryResultCachedAudio,InlineQueryResultCachedDocument,InlineQueryResultCachedGif,InlineQueryResultCachedMpeg4Gif,InlineQueryResultCachedPhoto,InlineQueryResultCachedSticker,InlineQueryResultCachedVideo,InlineQueryResultCachedVoice,InlineQueryResultContact,InlineQueryResultDocument,InlineQueryResultGame,InlineQueryResultGif,InlineQueryResultLocation,InlineQueryResultMpeg4Gif,InlineQueryResultPhoto,InlineQueryResultVenue,InlineQueryResultVideo,InlineQueryResultVoice
public abstract class InlineQueryResult extends Object
Represents one result of an inline query.
-
-
Constructor Summary
Constructors Constructor Description InlineQueryResult()InlineQueryResult(String type)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetId()InlineKeyboardMarkupgetReplyMarkup()StringgetType()voidsetId(String id)voidsetReplyMarkup(InlineKeyboardMarkup replyMarkup)voidsetType(String type)
-
-
-
Constructor Detail
-
InlineQueryResult
public InlineQueryResult()
-
InlineQueryResult
public InlineQueryResult(String type)
-
-
Method Detail
-
getType
public String getType()
-
setType
public void setType(String type)
-
getId
public String getId()
-
setId
public void setId(String id)
-
getReplyMarkup
public InlineKeyboardMarkup getReplyMarkup()
-
setReplyMarkup
public void setReplyMarkup(InlineKeyboardMarkup replyMarkup)
-
-