channels.inviteToChannel
Layer 225
Constructor ID: 0xc9e33d54
Returns: InvitedUsers
Parameters
| Name | Type | Description |
|---|---|---|
channel | InputChannel | |
users | []InputUser |
Example
go
result, err := client.Raw(&tg.InviteToChannelRequest{
channel: nil, // InputChannel
users: nil,
})
if err != nil {
panic(err)
}
print(result)