Layer 227
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 similarly to pts values to deduplicate/update outdated chat information as specified here.

Returns

Update

Gogram Example

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