chatlists.editExportedInvite
Layer 225
Constructor ID: 0x653db63d
Returns: ExportedChatlistInvite
Parameters
| Name | Type | Description |
|---|---|---|
chatlist | InputChatlist | |
slug | string | |
title | string (flags.1, optional) | |
peers | []InputPeer (flags.2, optional) |
Example
go
result, err := client.Raw(&tg.EditExportedInviteRequest{
chatlist: nil, // InputChatlist
slug: "",
title: "",
peers: nil,
})
if err != nil {
panic(err)
}
print(result)