Skip to content

channels.editBanned

Layer 225

Constructor ID: 0x96e6cd81
Returns: Updates

Parameters

NameTypeDescription
channelInputChannel
participantInputPeer
banned_rightsChatBannedRights

Example

go
result, err := client.Raw(&tg.EditBannedRequest{
    channel: nil, // InputChannel
    participant: nil, // InputPeer
    banned_rights: nil, // ChatBannedRights
})
if err != nil {
    panic(err)
}
print(result)

Released under the Apache-2.0 License.