Layer 220
InputPeerUserFromMessage
Defines a min user that was seen in a certain message of a certain chat.
constructor
inputPeerUserFromMessage#a87b0a1c peer:InputPeer msg_id:int user_id:long = InputPeer;
Parameters
| Name | Type | Description |
|---|---|---|
| Peer | InputPeer | The chat where the user was seen |
| MsgId | int | The message ID |
| UserId | long | The identifier of the user that was seen |
Returns
InputPeerGogram Example
// Creating InputPeerUserFromMessage constructor obj := &tg.InputPeerUserFromMessage{ Peer: &tg.InputPeerUser{UserID: int64(123456789)}, MsgId: 0, UserId: int64(0), }