Layer 227
UpdateChatParticipantDelete
A member has left the basic group.
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
UpdateGogram Example
// Creating UpdateChatParticipantDelete constructor obj := &tg.UpdateChatParticipantDelete{ ChatId: int64(1234567890), UserId: int64(1234567890), Version: 42, }