Layer 228
constructor
messages.chatInviteJoinResultWebView#61ca29d3 bot_id:long query_id:long users:Vector<User> = messages.ChatInviteJoinResult;

Parameters

Name Type Description
BotId long
QueryId long
Users Vector<User>

Gogram Example

// Creating MessagesChatInviteJoinResultWebView constructor
obj := &tg.MessagesChatInviteJoinResultWebView{
    BotId: int64(1234567890),
    QueryId: int64(1234567890),
    Users: []tg.User{&tg.UserObj{}},
}