Inherits Function.
Changes accent color and background custom emoji of a channel chat. Requires can_change_info administrator right.
Returns object_ptr<Ok>.
Public Fields | |
int53 | chat_id_ |
Chat identifier. | |
int32 | accent_color_id_ |
Identifier of the accent color to use. The chat must have at least accentColor.min_channel_chat_boost_level boost level to pass the corresponding color. | |
int64 | background_custom_emoji_id_ |
Identifier of a custom emoji to be shown on the reply header and link preview background; 0 if none. Use chatBoostLevelFeatures.can_set_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 | |
setChatAccentColor () | |
setChatAccentColor (int53 chat_id_, int32 accent_color_id_, int64 background_custom_emoji_id_) | |
void | store (TlStorerToString &s, const char *field_name) const final |
![]() | |
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 = 882857930 |
Identifier uniquely determining a type of the object. | |
Default constructor for a function, which changes accent color and background custom emoji of a channel chat. Requires can_change_info administrator right.
Returns object_ptr<Ok>.
setChatAccentColor | ( | int53 | chat_id_, |
int32 | accent_color_id_, | ||
int64 | background_custom_emoji_id_ | ||
) |
Creates a function, which changes accent color and background custom emoji of a channel chat. Requires can_change_info administrator right.
Returns object_ptr<Ok>.
[in] | chat_id_ | Chat identifier. |
[in] | accent_color_id_ | Identifier of the accent color to use. The chat must have at least accentColor.min_channel_chat_boost_level boost level to pass the corresponding color. |
[in] | background_custom_emoji_id_ | Identifier of a custom emoji to be shown on the reply header and link preview background; 0 if none. Use chatBoostLevelFeatures.can_set_background_custom_emoji to check whether a custom emoji can be set. |
|
finalvirtual |