Layer 220
constructor
keyboardButtonRequestPeer#53d7bfd8 text:string button_id:int peer_type:RequestPeerType max_quantity:int = KeyboardButton;

Parameters

Name Type Description
Text string Button text
ButtonId int Button ID, to be passed to messages. send Bot Requested Peer.
PeerType RequestPeerType Filtering criteria to use for the peer selection list shown to the user. The list should display all existing peers of the specified type, and should also offer an option for the user to create and immediately use one or more (up to max_quantity ) peers of the specified type, if needed.
MaxQuantity int Maximum number of peers that can be chosen.

Returns

KeyboardButton

Gogram Example

// Creating KeyboardButtonRequestPeer constructor
obj := &tg.KeyboardButtonRequestPeer{
    Text: "...",
    ButtonId: 0,
    PeerType: &tg.RequestPeerType{},
    MaxQuantity: 0,
}