Skip to content

chatlists.exportChatlistInvite

Layer 225

Constructor ID: 0x8472478e
Returns: ExportedChatlistInvite

Parameters

NameTypeDescription
chatlistInputChatlist
titlestring
peers[]InputPeer

Example

go
result, err := client.Raw(&tg.ExportChatlistInviteRequest{
    chatlist: nil, // InputChatlist
    title: "",
    peers: nil,
})
if err != nil {
    panic(err)
}
print(result)

Released under the Apache-2.0 License.