Raw.ReplyKeyboardForceReply
Force the user to send a reply
replyKeyboardForceReply#86b40b08 flags:# single_use:flags.1?true selective:flags.2?true placeholder:flags.3?string = ReplyMarkup;
export namespace Raw {
export class ReplyKeyboardForceReply {
constructor(params: { singleUse?: boolean; selective?: boolean; placeholder?: string }) {}
}
}
This is a types constructor, you can’t use it as method when call invoke.
Layer: 185
Constructor ID: 0x86b40b08
Property
singleUse
: boolean or undefinedRequests clients to hide the keyboard as soon as it’s been used. the keyboard will still be available, but clients will automatically display the usual letter-keyboard in the chat – the user can press a special button in the input field to see the custom keyboard again.
selective
: boolean or undefinedUse this parameter if you want to show the keyboard to specific users only. targets: 1) users that are @mentioned in the text of the message object; 2) if the bot’s message is a reply (has replyToMessageId), sender of the original message. example: a user requests to change the bot’s language, bot replies to the request with a keyboard to select the new language. other users in the group don’t see the keyboard.
placeholder
: string or undefinedThe placeholder to be shown in the input field when the keyboard is active; 1-64 characters.