Class InlineQueryResultCachedPhoto
- java.lang.Object
-
- org.apache.camel.component.telegram.model.InlineQueryResult
-
- org.apache.camel.component.telegram.model.InlineQueryResultCachedPhoto
-
public class InlineQueryResultCachedPhoto extends InlineQueryResult
Represents a link to a photo stored on the Telegram servers.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
InlineQueryResultCachedPhoto.Builder
-
Constructor Summary
Constructors Constructor Description InlineQueryResultCachedPhoto()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static InlineQueryResultCachedPhoto.Builder
builder()
String
getCaption()
String
getDescription()
InputMessageContent
getInputMessageContext()
String
getParseMode()
String
getPhotoFileId()
String
getTitle()
void
setCaption(String caption)
void
setDescription(String description)
void
setInputMessageContext(InputMessageContent inputMessageContext)
void
setParseMode(String parseMode)
void
setPhotoFileId(String photoFileId)
void
setTitle(String title)
-
Methods inherited from class org.apache.camel.component.telegram.model.InlineQueryResult
getId, getReplyMarkup, getType, setId, setReplyMarkup, setType
-
-
-
-
Method Detail
-
builder
public static InlineQueryResultCachedPhoto.Builder builder()
-
getPhotoFileId
public String getPhotoFileId()
-
getTitle
public String getTitle()
-
getDescription
public String getDescription()
-
getCaption
public String getCaption()
-
getParseMode
public String getParseMode()
-
getInputMessageContext
public InputMessageContent getInputMessageContext()
-
setPhotoFileId
public void setPhotoFileId(String photoFileId)
-
setTitle
public void setTitle(String title)
-
setDescription
public void setDescription(String description)
-
setCaption
public void setCaption(String caption)
-
setParseMode
public void setParseMode(String parseMode)
-
setInputMessageContext
public void setInputMessageContext(InputMessageContent inputMessageContext)
-
-