Skip to content

messages.getExportedChatInvites

Layer 225

Constructor ID: 0xa2b5a3f6
Returns: ExportedChatInvites

Parameters

NameTypeDescription
revokedbool (flags.3, optional)
peerInputPeer
admin_idInputUser
offset_dateint32 (flags.2, optional)
offset_linkstring (flags.2, optional)
limitint32

Example

go
result, err := client.Raw(&tg.GetExportedChatInvitesRequest{
    revoked: false,
    peer: nil, // InputPeer
    admin_id: nil, // InputUser
    offset_date: 0,
    offset_link: "",
    limit: 0,
})
if err != nil {
    panic(err)
}
print(result)

Released under the Apache-2.0 License.