Skip to content

chatlists.editExportedInvite

Layer 225

Constructor ID: 0x653db63d
Returns: ExportedChatlistInvite

Parameters

NameTypeDescription
chatlistInputChatlist
slugstring
titlestring (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)

Released under the Apache-2.0 License.