Inherits Update.
A list of active notifications in a notification group has changed.
Public Fields | |
int32 | notification_group_id_ |
Unique notification group identifier. | |
object_ptr< NotificationGroupType > | type_ |
New type of the notification group. | |
int53 | chat_id_ |
Identifier of a chat to which all notifications in the group belong. | |
int53 | notification_settings_chat_id_ |
Chat identifier, which notification settings must be applied to the added notifications. | |
int64 | notification_sound_id_ |
Identifier of the notification sound to be played; 0 if sound is disabled. | |
int32 | total_count_ |
Total number of unread notifications in the group, can be bigger than number of active notifications. | |
array< object_ptr< notification > > | added_notifications_ |
List of added group notifications, sorted by notification identifier. | |
array< int32 > | removed_notification_ids_ |
Identifiers of removed group notifications, sorted by notification identifier. | |
Public Instance Methods | |
updateNotificationGroup () | |
updateNotificationGroup (int32 notification_group_id_, object_ptr< NotificationGroupType > &&type_, int53 chat_id_, int53 notification_settings_chat_id_, int64 notification_sound_id_, int32 total_count_, array< object_ptr< notification >> &&added_notifications_, array< int32 > &&removed_notification_ids_) | |
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 = 1381081378 |
Identifier uniquely determining a type of the object. | |
A list of active notifications in a notification group has changed.
updateNotificationGroup | ( | int32 | notification_group_id_, |
object_ptr< NotificationGroupType > && | type_, | ||
int53 | chat_id_, | ||
int53 | notification_settings_chat_id_, | ||
int64 | notification_sound_id_, | ||
int32 | total_count_, | ||
array< object_ptr< notification >> && | added_notifications_, | ||
array< int32 > && | removed_notification_ids_ | ||
) |
A list of active notifications in a notification group has changed.
[in] | notification_group_id_ | Unique notification group identifier. |
[in] | type_ | New type of the notification group. |
[in] | chat_id_ | Identifier of a chat to which all notifications in the group belong. |
[in] | notification_settings_chat_id_ | Chat identifier, which notification settings must be applied to the added notifications. |
[in] | notification_sound_id_ | Identifier of the notification sound to be played; 0 if sound is disabled. |
[in] | total_count_ | Total number of unread notifications in the group, can be bigger than number of active notifications. |
[in] | added_notifications_ | List of added group notifications, sorted by notification identifier. |
[in] | removed_notification_ids_ | Identifiers of removed group notifications, sorted by notification identifier. |
|
finalvirtual |