messages.addChatUser
Layer 225
Constructor ID: 0xcbc6d107
Returns: InvitedUsers
Parameters
| Name | Type | Description |
|---|---|---|
chat_id | int64 | |
user_id | InputUser | |
fwd_limit | int32 |
Example
go
result, err := client.Raw(&tg.AddChatUserRequest{
chat_id: 0,
user_id: nil, // InputUser
fwd_limit: 0,
})
if err != nil {
panic(err)
}
print(result)