TDLib
|
Inherits td::td_api::Function.
Public Types | |
using | ReturnType = object_ptr< forumTopicInfo > |
Typedef for the type returned by the function. | |
Public Member Functions | |
createForumTopic () | |
createForumTopic (int53 chat_id_, string const &name_, object_ptr< forumTopicIcon > &&icon_) | |
std::int32_t | get_id () const final |
void | store (TlStorerToString &s, const char *field_name) const final |
Public Member Functions inherited from td::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 |
Public Attributes | |
int53 | chat_id_ |
Identifier of the chat. | |
string | name_ |
Name of the topic; 1-128 characters. | |
object_ptr< forumTopicIcon > | icon_ |
Icon of the topic. Icon color must be one of 0x6FB9F0, 0xFFD67E, 0xCB86DB, 0x8EEE98, 0xFF93B2, or 0xFB6F5F. Telegram Premium users can use any custom emoji as topic icon, other users can use only a custom emoji returned by getForumTopicDefaultIcons. | |
Static Public Attributes | |
static const std::int32_t | ID = -1040570140 |
Identifier uniquely determining a type of the object. | |
Creates a topic in a forum supergroup chat; requires can_manage_topics rights in the supergroup.
Returns object_ptr<ForumTopicInfo>.
td::td_api::createForumTopic::createForumTopic | ( | ) |
Default constructor for a function, which creates a topic in a forum supergroup chat; requires can_manage_topics rights in the supergroup.
Returns object_ptr<ForumTopicInfo>.
td::td_api::createForumTopic::createForumTopic | ( | int53 | chat_id_, |
string const & | name_, | ||
object_ptr< forumTopicIcon > && | icon_ | ||
) |
Creates a function, which creates a topic in a forum supergroup chat; requires can_manage_topics rights in the supergroup.
Returns object_ptr<ForumTopicInfo>.
[in] | chat_id_ | Identifier of the chat. |
[in] | name_ | Name of the topic; 1-128 characters. |
[in] | icon_ | Icon of the topic. Icon color must be one of 0x6FB9F0, 0xFFD67E, 0xCB86DB, 0x8EEE98, 0xFF93B2, or 0xFB6F5F. Telegram Premium users can use any custom emoji as topic icon, other users can use only a custom emoji returned by getForumTopicDefaultIcons. |
|
inlinefinalvirtual |
Returns identifier uniquely determining a type of the object.
Implements td::TlObject.
|
finalvirtual |
Helper function for to_string method. Appends string representation of the object to the storer.
[in] | s | Storer to which object string representation will be appended. |
[in] | field_name | Object field_name if applicable. |
Implements td::TlObject.