TgKit library and website are still in early development!

KeyboardButton Class

Represents one button of the reply keyboard. For simple text buttons can be used instead of this object to specify text of the button. Optional fields request_contact, request_location, and request_poll are mutually exclusive.

Properties

requestChat KeyboardButtonRequestChat

If specified, pressing the button will open a list of suitable chats

See the code

requestContact boolean

If *true*, the user's phone number will be sent as a contact when the button is pressed. Available in private chats only.

See the code

requestLocation boolean

If *true*, the user's current location will be sent when the button is pressed. Available in private chats only

See the code

requestPoll KeyboardButtonPollType

If specified, the user will be asked to create a poll and send it to the bot when the button is pressed. Available in private chats only

See the code

requestUser KeyboardButtonRequestUser

If specified, pressing the button will open a list of suitable users

See the code

text string

Text of the button. If none of the optional fields are used, it will be sent as a message when the button is pressed

See the code

webApp WebAppInfo

If specified, the described Web App will be launched when the button is pressed. Available in private chats only.

See the code

Methods

setRequestChat(requestChat: KeyboardButtonRequestChat): KeyboardButton

See the code

setRequestContact(requestContact: boolean): KeyboardButton

See the code

setRequestLocation(requestLocation: boolean): KeyboardButton

See the code

setRequestPoll(requestPoll: KeyboardButtonPollType): KeyboardButton

See the code

setRequestUser(requestUser: KeyboardButtonRequestUser): KeyboardButton

See the code

setText(text: string): KeyboardButton

See the code

setWebApp(webApp: WebAppInfo): KeyboardButton

See the code

toJSON(): object

See the code