Inherits Function.
Returns information about a single member of a chat.
Returns object_ptr<ChatMember>.
Public Fields | |
int53 | chat_id_ |
Chat identifier. | |
object_ptr< MessageSender > | member_id_ |
Member identifier. | |
Public Types | |
using | ReturnType = object_ptr< chatMember > |
Typedef for the type returned by the function. | |
Public Instance Methods | |
getChatMember () | |
getChatMember (int53 chat_id_, object_ptr< MessageSender > &&member_id_) | |
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 = -792636814 |
Identifier uniquely determining a type of the object. | |
getChatMember | ( | ) |
Default constructor for a function, which returns information about a single member of a chat.
Returns object_ptr<ChatMember>.
getChatMember | ( | int53 | chat_id_, |
object_ptr< MessageSender > && | member_id_ | ||
) |
Creates a function, which returns information about a single member of a chat.
Returns object_ptr<ChatMember>.
[in] | chat_id_ | Chat identifier. |
[in] | member_id_ | Member identifier. |
|
finalvirtual |