Layer 224
constructor
updateUserTyping#2a17bf5c flags:# user_id:long top_msg_id:flags.0?int action:SendMessageAction = Update;

Parameters

Name Type Description
UserId long User id
TopMsgId flags.0?int If set, this notification was sent within a bot forum topic.
Action SendMessageAction Action type

Returns

Update

Gogram Example

// Creating UpdateUserTyping constructor
obj := &tg.UpdateUserTyping{
    UserId: int64(1234567890),
    Action: &tg.SendMessageAction{},

    // Optional fields:
    // TopMsgId: 42,
}