Inherits Function.
Uses an invite link to add the current user to the chat if possible. May return an error with a message "INVITE_REQUEST_SENT" if only a join request was created.
Returns object_ptr<Chat>.
Public Fields | |
string | invite_link_ |
Invite link to use. | |
Public Types | |
using | ReturnType = object_ptr< chat > |
Typedef for the type returned by the function. | |
Public Instance Methods | |
joinChatByInviteLink () | |
joinChatByInviteLink (string const &invite_link_) | |
void | store (TlStorerToString &s, const char *field_name) const final |
Public Instance Methods inherited from TlObject | |
virtual void | store (TlStorerUnsafe &s) const |
virtual void | store (TlStorerCalcLength &s) const |
TlObject ()=default | |
TlObject (const TlObject &)=delete | |
TlObject & | operator= (const TlObject &)=delete |
TlObject (TlObject &&)=default | |
TlObject & | operator= (TlObject &&)=default |
virtual | ~TlObject ()=default |
Static Public Attributes | |
static const std::int32_t | ID = -1049973882 |
Identifier uniquely determining a type of the object. | |
Default constructor for a function, which uses an invite link to add the current user to the chat if possible. May return an error with a message "INVITE_REQUEST_SENT" if only a join request was created.
Returns object_ptr<Chat>.
|
explicit |
Creates a function, which uses an invite link to add the current user to the chat if possible. May return an error with a message "INVITE_REQUEST_SENT" if only a join request was created.
Returns object_ptr<Chat>.
[in] | invite_link_ | Invite link to use. |
|
finalvirtual |