Layer 220
constructor
updateChatParticipantDelete#e32f3d77 chat_id:long user_id:long version:int = Update;

Parameters

Name Type Description
ChatId long Group ID
UserId long ID of the user
Version int Used in basic groups to reorder updates and make sure that all of them was received.

Returns

Update

Gogram Example

// Creating UpdateChatParticipantDelete constructor
obj := &tg.UpdateChatParticipantDelete{
    ChatId: int64(0),
    UserId: int64(0),
    Version: 0,
}