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