Inherits Function.
Sends a notification about user activity in a chat.
Returns object_ptr<Ok>.
Public Fields | |
int53 | chat_id_ |
Chat identifier. | |
int53 | message_thread_id_ |
If not 0, the message thread identifier in which the action was performed. | |
string | business_connection_id_ |
Unique identifier of business connection on behalf of which to send the request; for bots only. | |
object_ptr< ChatAction > | action_ |
The action description; pass null to cancel the currently active action. | |
Public Types | |
using | ReturnType = object_ptr< ok > |
Typedef for the type returned by the function. | |
Public Instance Methods | |
sendChatAction () | |
sendChatAction (int53 chat_id_, int53 message_thread_id_, string const &business_connection_id_, object_ptr< ChatAction > &&action_) | |
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 = -2010910050 |
Identifier uniquely determining a type of the object. | |
sendChatAction | ( | ) |
Default constructor for a function, which sends a notification about user activity in a chat.
Returns object_ptr<Ok>.
sendChatAction | ( | int53 | chat_id_, |
int53 | message_thread_id_, | ||
string const & | business_connection_id_, | ||
object_ptr< ChatAction > && | action_ | ||
) |
Creates a function, which sends a notification about user activity in a chat.
Returns object_ptr<Ok>.
[in] | chat_id_ | Chat identifier. |
[in] | message_thread_id_ | If not 0, the message thread identifier in which the action was performed. |
[in] | business_connection_id_ | Unique identifier of business connection on behalf of which to send the request; for bots only. |
[in] | action_ | The action description; pass null to cancel the currently active action. |
|
finalvirtual |