// // Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2024 // // 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/td_api.h" #include "td/telegram/UserId.h" #include "td/actor/actor.h" #include "td/utils/common.h" #include "td/utils/Promise.h" namespace td { class BusinessAwayMessage; class BusinessGreetingMessage; class BusinessIntro; class BusinessWorkHours; class DialogLocation; class Td; class BusinessManager final : public Actor { public: BusinessManager(Td *td, ActorShared<> parent); void get_business_connected_bot(Promise> &&promise); void set_business_connected_bot(td_api::object_ptr &&bot, Promise &&promise); void delete_business_connected_bot(UserId bot_user_id, Promise &&promise); void toggle_business_connected_bot_dialog_is_paused(DialogId dialog_id, bool is_paused, Promise &&promise); void remove_business_connected_bot_from_dialog(DialogId dialog_id, Promise &&promise); void get_business_chat_links(Promise> &&promise); void create_business_chat_link(td_api::object_ptr &&link_info, Promise> &&promise); void edit_business_chat_link(const string &link, td_api::object_ptr &&link_info, Promise> &&promise); void delete_business_chat_link(const string &link, Promise &&promise); void get_business_chat_link_info(const string &link, Promise> &&promise); void set_business_location(DialogLocation &&location, Promise &&promise); void set_business_work_hours(BusinessWorkHours &&work_hours, Promise &&promise); void set_business_greeting_message(BusinessGreetingMessage &&greeting_message, Promise &&promise); void set_business_away_message(BusinessAwayMessage &&away_message, Promise &&promise); void set_business_intro(BusinessIntro &&intro, Promise &&promise); private: void tear_down() final; Td *td_; ActorShared<> parent_; }; } // namespace td