Inherits Function.
Reports a story to the Telegram moderators.
Returns object_ptr<ReportStoryResult>.
Public Fields | |
int53 | story_sender_chat_id_ |
The identifier of the sender of the story to report. | |
int32 | story_id_ |
The identifier of the story to report. | |
bytes | option_id_ |
Option identifier chosen by the user; leave empty for the initial request. | |
string | text_ |
Additional report details; 0-1024 characters; leave empty for the initial request. | |
Public Types | |
using | ReturnType = object_ptr< ReportStoryResult > |
Typedef for the type returned by the function. | |
Public Instance Methods | |
reportStory () | |
reportStory (int53 story_sender_chat_id_, int32 story_id_, bytes const &option_id_, string const &text_) | |
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 = 2027844368 |
Identifier uniquely determining a type of the object. | |
reportStory | ( | ) |
Default constructor for a function, which reports a story to the Telegram moderators.
Returns object_ptr<ReportStoryResult>.
reportStory | ( | int53 | story_sender_chat_id_, |
int32 | story_id_, | ||
bytes const & | option_id_, | ||
string const & | text_ | ||
) |
Creates a function, which reports a story to the Telegram moderators.
Returns object_ptr<ReportStoryResult>.
[in] | story_sender_chat_id_ | The identifier of the sender of the story to report. |
[in] | story_id_ | The identifier of the story to report. |
[in] | option_id_ | Option identifier chosen by the user; leave empty for the initial request. |
[in] | text_ | Additional report details; 0-1024 characters; leave empty for the initial request. |
|
finalvirtual |