// // Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2022 // // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // #pragma once #include "td/telegram/DialogId.h" #include "td/telegram/NotificationId.h" #include "td/telegram/NotificationType.h" #include "td/telegram/td_api.h" #include "td/utils/common.h" #include "td/utils/StringBuilder.h" namespace td { class Notification { public: NotificationId notification_id; int32 date = 0; bool disable_notification = false; unique_ptr type; Notification(NotificationId notification_id, int32 date, bool disable_notification, unique_ptr type) : notification_id(notification_id) , date(date) , disable_notification(disable_notification) , type(std::move(type)) { } }; inline td_api::object_ptr get_notification_object(DialogId dialog_id, const Notification ¬ification) { CHECK(notification.type != nullptr); return td_api::make_object(notification.notification_id.get(), notification.date, notification.disable_notification, notification.type->get_notification_type_object(dialog_id)); } inline StringBuilder &operator<<(StringBuilder &sb, const Notification ¬ification) { return sb << "notification[" << notification.notification_id << ", " << notification.date << ", " << notification.disable_notification << ", " << *notification.type << ']'; } } // namespace td