Inherits Function.
Changes accent color and background custom emoji for profile of a supergroup or channel chat. Requires can_change_info administrator right.
Returns object_ptr<Ok>.
Public Fields | |
| int53 | chat_id_ |
| Chat identifier. | |
| int32 | profile_accent_color_id_ |
| Identifier of the accent color to use for profile; pass -1 if none. The chat must have at least profileAccentColor.min_supergroup_chat_boost_level for supergroups or profileAccentColor.min_channel_chat_boost_level for channels boost level to pass the corresponding color. | |
| int64 | profile_background_custom_emoji_id_ |
| Identifier of a custom emoji to be shown on the chat's profile photo background; 0 if none. Use chatBoostLevelFeatures.can_set_profile_background_custom_emoji to check whether a custom emoji can be set. | |
Public Types | |
| using | ReturnType = object_ptr< ok > |
| Typedef for the type returned by the function. | |
Public Instance Methods | |
| setChatProfileAccentColor () | |
| setChatProfileAccentColor (int53 chat_id_, int32 profile_accent_color_id_, int64 profile_background_custom_emoji_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 = 1109896826 |
| Identifier uniquely determining a type of the object. | |
Default constructor for a function, which changes accent color and background custom emoji for profile of a supergroup or channel chat. Requires can_change_info administrator right.
Returns object_ptr<Ok>.
| setChatProfileAccentColor | ( | int53 | chat_id_, |
| int32 | profile_accent_color_id_, | ||
| int64 | profile_background_custom_emoji_id_ | ||
| ) |
Creates a function, which changes accent color and background custom emoji for profile of a supergroup or channel chat. Requires can_change_info administrator right.
Returns object_ptr<Ok>.
| [in] | chat_id_ | Chat identifier. |
| [in] | profile_accent_color_id_ | Identifier of the accent color to use for profile; pass -1 if none. The chat must have at least profileAccentColor.min_supergroup_chat_boost_level for supergroups or profileAccentColor.min_channel_chat_boost_level for channels boost level to pass the corresponding color. |
| [in] | profile_background_custom_emoji_id_ | Identifier of a custom emoji to be shown on the chat's profile photo background; 0 if none. Use chatBoostLevelFeatures.can_set_profile_background_custom_emoji to check whether a custom emoji can be set. |
|
finalvirtual |