Skip to content

messages.deleteChatUser

Layer 225

Constructor ID: 0xa2185cab
Returns: Updates

Parameters

NameTypeDescription
revoke_historybool (flags.0, optional)
chat_idint64
user_idInputUser

Example

go
result, err := client.Raw(&tg.DeleteChatUserRequest{
    revoke_history: false,
    chat_id: 0,
    user_id: nil, // InputUser
})
if err != nil {
    panic(err)
}
print(result)

Released under the Apache-2.0 License.