Layer 220
ReplyMarkup
Abstract type representing one of 4 possible constructors.
Type
Available Constructors
In Gogram, this type is represented as tg.ReplyMarkup interface.
Use any of the following constructors:
Gogram Example
// ReplyMarkup is an interface type // You can use any of the following constructors: var _ tg.ReplyMarkup = &tg.ReplyKeyboardHide{} var _ tg.ReplyMarkup = &tg.ReplyInlineMarkup{} var _ tg.ReplyMarkup = &tg.ReplyKeyboardForceReply{} var _ tg.ReplyMarkup = &tg.ReplyKeyboardMarkup{}