Skip to content

messages.getChatInviteImporters

Layer 225

Constructor ID: 0xdf04dd4e
Returns: ChatInviteImporters

Parameters

NameTypeDescription
requestedbool (flags.0, optional)
subscription_expiredbool (flags.3, optional)
peerInputPeer
linkstring (flags.1, optional)
qstring (flags.2, optional)
offset_dateint32
offset_userInputUser
limitint32

Example

go
result, err := client.Raw(&tg.GetChatInviteImportersRequest{
    requested: false,
    subscription_expired: false,
    peer: nil, // InputPeer
    link: "",
    q: "",
    offset_date: 0,
    offset_user: nil, // InputUser
    limit: 0,
})
if err != nil {
    panic(err)
}
print(result)

Released under the Apache-2.0 License.